Advertisement
Guest User

Untitled

a guest
Jan 28th, 2015
213
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.56 KB | None | 0 0
  1. server {
  2. listen 127.0.0.1;
  3. server_name makkoto-website.au;
  4.  
  5. access_log /var/log/nginx/makkoto-website.access_log main;
  6. error_log /var/log/nginx/makkoto-website.error_log info;
  7.  
  8. root /home/loremipsum/projects/makkoto-website/src/www;
  9.  
  10. location / {
  11. try_files $uri $uri/ /index.php?$query_string;
  12. }
  13.  
  14. location ~ \.php$ {
  15. try_files $uri $uri/ =404;
  16. include fastcgi_params;
  17. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  18. fastcgi_pass unix:/var/run/php5-fpm.sock;
  19. }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement