added dcr and drone subdomains
This commit is contained in:
42
nginx.conf
42
nginx.conf
@@ -107,6 +107,27 @@ server {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# DCR
|
||||||
|
# ----------------------------
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name dcr.aetoskia.com;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://private-pi:6001;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
|
||||||
|
# WebSocket support
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
# Gitea
|
# Gitea
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
@@ -128,6 +149,27 @@ server {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# ----------------------------
|
||||||
|
# Drone
|
||||||
|
# ----------------------------
|
||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
server_name drone.aetoskia.com;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
proxy_pass http://private-pi:6003;
|
||||||
|
proxy_set_header Host $host;
|
||||||
|
proxy_set_header X-Real-IP $remote_addr;
|
||||||
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||||||
|
proxy_set_header X-Forwarded-Proto $scheme;
|
||||||
|
|
||||||
|
# WebSocket support
|
||||||
|
proxy_http_version 1.1;
|
||||||
|
proxy_set_header Upgrade $http_upgrade;
|
||||||
|
proxy_set_header Connection "upgrade";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
# Sonarr
|
# Sonarr
|
||||||
# ----------------------------
|
# ----------------------------
|
||||||
|
Reference in New Issue
Block a user