Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- server {
- listen 443 ssl;
- listen [::]:443 ssl;
- server_name organizr.domainname.org;
- server_tokens off;
- include ssl.conf;
- access_log /var/log/nginx/organizr_access.log;
- error_log /var/log/nginx/organizr_error.log warn;
- location / {
- proxy_pass http://hostip:port;
- include proxy.conf;
- }
- location /sonarr {
- proxy_pass http://hostip:port;
- include proxy.conf;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement