Add homebox
This commit is contained in:
@@ -282,6 +282,26 @@ http {
|
||||
}
|
||||
}
|
||||
|
||||
upstream homebox-handler {
|
||||
server homebox:7745;
|
||||
}
|
||||
|
||||
server {
|
||||
listen 443 ssl http2;
|
||||
|
||||
ssl_certificate /etc/nginx/certs/${DOMAIN}.crt;
|
||||
ssl_certificate_key /etc/nginx/certs/${DOMAIN}.key;
|
||||
|
||||
gzip_types text/plain text/css application/json application/x-javascript
|
||||
text/xml application/xml application/xml+rss text/javascript;
|
||||
|
||||
server_name assets.${DOMAIN};
|
||||
|
||||
location / {
|
||||
proxy_pass http://homebox-handler;
|
||||
}
|
||||
}
|
||||
|
||||
upstream tt-rss-handler {
|
||||
server tt-rss:9000;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user