Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. server {
  2. listen 80;
  3. root /var/www/yourproject/public; # директория проекта, не забудь указать на public
  4. index index.php index.html index.htm;
  5. server_name yourproject.local; # домен проекта, по которому сможешь заходить на серв
  6.  
  7. client_max_body_size 32m;
  8.  
  9. location / {
  10. try_files $uri $uri/ /index.php?$query_string;
  11. }
  12.  
  13. error_page 404 /404.html;
  14. error_page 500 502 503 504 /50x.html;
  15.  
  16. location ~ \.php$ {
  17. try_files $uri =404;
  18. fastcgi_pass 127.0.0.1:9000;
  19. #fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
  20. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  21. fastcgi_index index.php;
  22. include fastcgi_params;
  23. }
  24. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement