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; index index.php index.html index.htm;
location / { location / {
try_files $uri $uri/ /index.php?$query_string; try_files $uri $uri/ =404;
} }
# Pour toutes les requetes php # Pour toutes les requetes php
location ~ \.php$ { location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass wordpress:9000; fastcgi_pass wordpress:9000;
fastcgi_index index.php; include snippets/fastcgi-php.conf;
include fastcgi_params; #fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; #include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_path_info; #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] [www]
user = www-data user = www-data
group = www-data group = www-data
listen = 0.0.0.0:9000 listen = wordpress:9000
clear_env = no clear_env = no
pm = dynamic pm = dynamic