Advertisement
Guest User

Untitled

a guest
Jan 13th, 2020
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Nginx 0.43 KB | None | 0 0
  1. server {
  2.         listen 80 default_server;
  3.         listen [::]:80 default_server;
  4.  
  5.         root /var/www/ramsbottom/public/;
  6.  
  7.         index index.php;
  8.  
  9.         server_name _;
  10.  
  11.         location / {
  12.                 try_files $uri $uri/ /index.php?$query_string;
  13.         }
  14.  
  15.         location ~ \.php$ {
  16.                 include snippets/fastcgi-php.conf;
  17.                 fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
  18.         }
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement