Update docker conf

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-24 22:16:16 +01:00
parent 1eb75b5782
commit 60d1ec1364
7 changed files with 121 additions and 42 deletions
+16
View File
@@ -0,0 +1,16 @@
server {
listen 80;
root /var/www/app/public;
index index.php index.html;
location / {
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
fastcgi_pass php:9000;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
}
}