Advertisement
oxx93

Untitled

Aug 11th, 2015
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. server
  2.  
  3. {
  4.  
  5. # Порты
  6. listen 80;
  7.  
  8. root /var/www;
  9. index index.php index.html index.htm;
  10. server_name example.com;
  11. }
  12.  
  13. location ~ \.php$ {
  14. try_files $uri =404;
  15. include common/php-fpm;
  16.  
  17. }
  18.  
  19. include common/upstream;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement