This commit is contained in:
Ubuntu
2025-07-04 18:42:42 +00:00
parent bb5ab233e0
commit acb6dce583
2 changed files with 7 additions and 8 deletions
+6 -7
View File
@@ -75,18 +75,17 @@ http {
index index.php index.html index.htm;
location / {
try_files $uri $uri/ /index.php?$query_string;
try_files $uri $uri/ =404;
}
# Pour toutes les requetes php
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000;
fastcgi_index index.php;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param PATH_INFO $fastcgi_path_info;
include snippets/fastcgi-php.conf;
#fastcgi_index index.php;
#include fastcgi_params;
#fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
#fastcgi_param PATH_INFO $fastcgi_path_info;
}
}
+1 -1
View File
@@ -1,7 +1,7 @@
[www]
user = www-data
group = www-data
listen = 0.0.0.0:9000
listen = wordpress:9000
clear_env = no
pm = dynamic