94 lines
No EOL
2.8 KiB
Nginx Configuration File
Executable file
94 lines
No EOL
2.8 KiB
Nginx Configuration File
Executable file
events {
|
|
worker_connections 4096; ## Default: 1024
|
|
}
|
|
http {
|
|
# radarr
|
|
server {
|
|
listen 80;
|
|
server_name griffix.hopto.org:7878;
|
|
location / {
|
|
proxy_pass http://192.168.1.55:7878;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|
|
# server {
|
|
# listen 443 ssl;
|
|
# server_name www.first.com first.com;
|
|
# ssl_certificate /etc/nginx/certs/ssl_cert.crt;
|
|
# ssl_certificate_key /etc/nginx/certs/ssl_key.key;
|
|
# location / {
|
|
# proxy_pass http://first_container:first_port;
|
|
# proxy_set_header Host $host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# }
|
|
# }
|
|
# }
|
|
|
|
# sonarr
|
|
server {
|
|
listen 80;
|
|
server_name griffix.hopto.org:8989;
|
|
location / {
|
|
proxy_pass http://192.168.1.55:8989;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|
|
# server {
|
|
# listen 443 ssl;
|
|
# server_name www.second.com second.com;
|
|
# ssl_certificate /etc/nginx/certs/ssl_cert.crt;
|
|
# ssl_certificate_key /etc/nginx/certs/ssl_key.key;
|
|
# location / {
|
|
# proxy_pass http://second_container:second_port;
|
|
# proxy_set_header Host $host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# }
|
|
# }
|
|
# }
|
|
|
|
# qbit
|
|
server {
|
|
listen 80;
|
|
server_name griffix.hopto.org:8081;
|
|
location / {
|
|
proxy_pass http://192.168.1.55:8080;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|
|
# server {
|
|
# listen 443 ssl;
|
|
# server_name www.second.com second.com;
|
|
# ssl_certificate /etc/nginx/certs/ssl_cert.crt;
|
|
# ssl_certificate_key /etc/nginx/certs/ssl_key.key;
|
|
# location / {
|
|
# proxy_pass http://second_container:second_port;
|
|
# proxy_set_header Host $host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# }
|
|
# }
|
|
|
|
# Jellyfin
|
|
server {
|
|
listen 80;
|
|
server_name griffix.hopto.org:8096;
|
|
location / {
|
|
proxy_pass http://192.168.1.55:8096;
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
}
|
|
}
|
|
# server {
|
|
# listen 443 ssl;
|
|
# server_name www.second.com second.com;
|
|
# ssl_certificate /etc/nginx/certs/ssl_cert.crt;
|
|
# ssl_certificate_key /etc/nginx/certs/ssl_key.key;
|
|
# location / {
|
|
# proxy_pass http://second_container:second_port;
|
|
# proxy_set_header Host $host;
|
|
# proxy_set_header X-Real-IP $remote_addr;
|
|
# }
|
|
# }
|
|
} |