Files
DredgeTours/docker/nginx/default.conf
josh c0618ce3e4
Some checks failed
linter / quality (push) Has been cancelled
tests / ci (push) Has been cancelled
Dockerized for dev purposes
2025-11-04 19:25:30 +10:00

20 lines
402 B
Plaintext

server {
listen 80;
index index.php index.html;
root /var/www/html/public;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass php:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
client_max_body_size 100M;
}