nginx/rc-wordpress.conf
author Riwad Salim
Mon, 17 Jun 2019 17:45:12 +0200
changeset 25 494279920e1b
parent 6 36381334b11e
permissions -rw-r--r--
Added tag 0.3 for changeset 86535a5969b8

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;
    }
}