nginx/rc-wordpress.conf
author ymh <ymh.work@gmail.com>
Tue, 23 Apr 2019 20:24:02 +0200
changeset 2 8bfef8029c17
parent 0 800e4a6ab128
child 6 36381334b11e
permissions -rw-r--r--
Correct README and add missing wp-config file

server {
    listen      80;
    listen [::]:80;
    # server_name               myapp.local www.myapp.local;
    server_name               localhost 127.0.0.1;

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