Fix errors

This commit is contained in:
T'JAMPENS QUENTIN p2406187
2025-11-29 01:48:20 +01:00
parent 99655b0d84
commit b7cd27be7e
27 changed files with 121 additions and 6 deletions
+6 -2
View File
@@ -1,7 +1,8 @@
server {
listen 80;
root /var/www/app/public;
server_name 127.0.0.1;
root /var/www/app/public;
index index.php index.html;
location / {
@@ -9,8 +10,11 @@ server {
}
location ~ \.php$ {
fastcgi_pass php:9000;
include fastcgi_params;
fastcgi_pass php:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param SERVER_NAME 127.0.0.1;
fastcgi_param HTTPS off;
}
}