nginx/rc-wordpress.conf
author ymh <ymh.work@gmail.com>
Sat, 06 Mar 2021 09:11:30 +0100
changeset 42 5bb33f78b519
parent 6 36381334b11e
permissions -rw-r--r--
New partners list

server {
    listen      80;
    listen [::]:80;
    server_name               recherchecontributive.test www.recherchecontributive.test;

    root /var/www/html/web;
    index index.php;

    access_log /var/log/nginx/access.log;
    error_log /var/log/nginx/error.log;

    location / {
        try_files $uri $uri/ /index.php?$args;
    }

    location ~ \.php$ {
        try_files $uri =404;
        fastcgi_split_path_info ^(.+\.php)(/.+)$;
        fastcgi_pass wp:9000;
        fastcgi_index index.php;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param PATH_INFO $fastcgi_path_info;
    }
}