Merge branch 'dev' into 'features/typesense'

# Conflicts:
#   routes/events.php
This commit is contained in:
JOSSERAND GIOVANNI p2405212
2025-12-07 15:14:51 +00:00
35 changed files with 220 additions and 21 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;
}
}