Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80;
- server_name nibyblog.pl www.nibyblog.pl;
- access_log /home/franek/domains/nibyblog.pl/logs/nibyblog.pl.access.log;
- error_log /home/franek/domains/nibyblog.pl/logs/nibyblog.pl.error.log;
- location / {
- root /home/franek/domains/nibyblog.pl/public_html;
- index index.html index.php;
- }
- location ~ \.php$ {
- include /etc/nginx/fastcgi_params;
- fastcgi_pass 127.0.0.1:9000;
- fastcgi_index index.php;
- fastcgi_param SCRIPT_FILENAME /home/franek/domains/nibyblog.pl/public_html$fastcgi_script_name;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement