Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- events {
- }
- http {
- include mime.types;
- default_type application/octet-stream;
- server {
- listen 80;
- listen [::]:80 default_server ipv6only=on;
- server_name localhost;
- root htdocs;
- index index.php index.html index.htm;
- location ~ \.php$ {
- try_files $uri = 404;
- fastcgi_split_path_info ^(.+\.php)(/.+)$;
- fastcgi_pass 127.0.0.1:9999;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
- include fastcgi_params;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement