Guest User

Untitled

a guest
May 25th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. server {
  2. listen 127.0.0.15:80;
  3.  
  4. root /var/www/projects/Skoleni/Elasticsearch/Advanced/www;
  5. #root /var/www/projects/01_github_repositories/TomasPilar/ElasticShop/www;
  6. index index.php;
  7.  
  8. server_name elasticsearch-advanced.local;
  9.  
  10. location / {
  11. try_files $uri $uri/ index.php$is_args$args;
  12. }
  13.  
  14. location ~ \.php$ {
  15. include snippets/fastcgi-php.conf;
  16. fastcgi_pass unix:/opt/phpfarm/inst/php-7.1.16/var/run/php-fpm.sock;
  17. }
  18.  
  19. }
Add Comment
Please, Sign In to add comment