Commit 97057f25 authored by Eric Pfeiffer's avatar Eric Pfeiffer Committed by GitHub

Update Caddyfile

fixes 404 errors for files in the public folder, such as css or js files.
parent c60cb9ab
# Docs: https://caddyserver.com/docs/caddyfile # Docs: https://caddyserver.com/docs/caddyfile
0.0.0.0:80 0.0.0.0:80
fastcgi / php-fpm:9000 php root /var/www/laravel/public
fastcgi / php-fpm:9000 php {
index index.php
}
rewrite { rewrite {
r .*
ext /
to /index.php?{query} to /index.php?{query}
} }
browse browse
log stdout log stdout
errors stdout errors stderr
# Uncomment to enable TLS (HTTPS) # Uncomment to enable TLS (HTTPS)
# Change the first list to listen on port 443 when enabling TLS # Change the first list to listen on port 443 when enabling TLS
#tls self_signed #tls self_signed
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment