Ubuntu Pastebin

Paste from Dom___ at Fri, 23 Dec 2016 21:48:04 +0000

Download as text
1
2
3
4
5
6
7
8
9
location ~ \.php$ {
                try_files $uri =404;
                fastcgi_split_path_info ^(.+\.php)(/.+)$;
        #       fastcgi_pass unix:/var/run/php/php7.0-fpm.sock;
                fastcgi_pass 127.0.0.1:9000
                fastcgi_index index.php;
                fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
                include fastcgi_params;
        }
Download as text