mediatekformation/default

27 lines
756 B
Text
Raw Normal View History

2026-01-29 09:19:50 +00:00
server {
listen 8080;
listen [::]:8080;
root /home/site/wwwroot/public; # <-- On pointe sur public
index index.php;
server_name example.com;
location / {
# Indispensable pour Symfony : redirige tout vers index.php
try_files $uri /index.php$is_args$args;
}
location ~ ^/index\.php(/|$) {
fastcgi_pass 127.0.0.1:9000;
fastcgi_split_path_info ^(.+\.php)(/.*)$;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param DOCUMENT_ROOT $document_root;
internal;
}
location ~ \.php$ {
return 404;
}
error_log /var/log/nginx/project_error.log;
access_log /var/log/nginx/project_access.log;
}