Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 80;
- server_name demo.setmed.hr;
- root /var/www;
- access_log /var/log/nginx/demo.setmed.hr-access.log;
- error_log /var/log/nginx/demo.setmed.hr-error.log error;
- index index.html index.htm index.php;
- location / {
- try_files $uri $uri/ /index.php$is_args$args;
- }
- location ~ \.php$ {
- fastcgi_split_path_info ^(.+\.php)(/.+)$;
- fastcgi_pass unix:/var/run/php7.2-fpm-wordpress-site.sock;
- fastcgi_index index.php;
- include fastcgi.conf;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement