Advertisement
Guest User

Untitled

a guest
Aug 12th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.27 KB | None | 0 0
  1. location / { try_files $uri $uri/ /index.php /index.php?$args =404;
  2. }
  3.  
  4. location ^~ /plex {
  5. include /config/nginx/proxy.conf; proxy_pass http://192.168.1.148:32400; } location ^~ /sonarr { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.148:8989; } location ^~ /radarr { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.148:7878; }
  6. location ^~ /ombi { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.148:3000; } } location ^~ /ombi { include /config/nginx/proxy.conf; proxy_pass http://192.168.1.148:3000; } location ^~ /next { include /config/nginx/proxy.conf; proxy_pass https://192.168.1.148:9998; } location ~ \.php$ {
  7. fastcgi_split_path_info ^(.+\.php)(/.+)$;
  8. # With php7-cgi alone:
  9. fastcgi_pass 127.0.0.1:9000;
  10. # With php7-fpm: #fastcgi_pass unix:/var/run/php7-fpm.sock;
  11. fastcgi_index index.php;
  12. include /etc/nginx/fastcgi_params;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement