mirror of
https://github.com/alexbelgium/hassio-addons.git
synced 2026-01-11 02:11:01 +01:00
test
This commit is contained in:
@@ -47,6 +47,9 @@
|
||||
},
|
||||
"image": "ghcr.io/alexbelgium/sabnzbd-{arch}",
|
||||
"init": false,
|
||||
"init": false,
|
||||
"ingress": true,
|
||||
"ingress_entry": "sabnzbd",
|
||||
"map": [
|
||||
"config:rw",
|
||||
"share:rw",
|
||||
@@ -80,6 +83,6 @@
|
||||
},
|
||||
"slug": "sabnzbd",
|
||||
"url": "https://github.com/alexbelgium/hassio-addons",
|
||||
"version": "3.7.1-ls89",
|
||||
"version": "do_not_install",
|
||||
"webui": "http://[HOST]:[PORT:8080]"
|
||||
}
|
||||
}
|
||||
@@ -5,35 +5,19 @@ server {
|
||||
include /etc/nginx/includes/proxy_params.conf;
|
||||
|
||||
client_max_body_size 0;
|
||||
index index.html index.htm index.php;
|
||||
|
||||
location / {
|
||||
# Pass data
|
||||
proxy_pass http://127.0.0.1:8080/sabnzbd/;
|
||||
proxy_cache_bypass $http_upgrade;
|
||||
root /app;
|
||||
location / {
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
proxy_connect_timeout 30m;
|
||||
proxy_send_timeout 30m;
|
||||
proxy_read_timeout 30m;
|
||||
proxy_pass http://127.0.0.1:8080;
|
||||
|
||||
# Proxy headers
|
||||
add_header Access-Control-Allow-Origin *;
|
||||
proxy_set_header Upgrade $http_upgrade;
|
||||
proxy_set_header Connection "upgrade";
|
||||
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;
|
||||
proxy_set_header X-Forwarded-Host $host;
|
||||
proxy_set_header X-Forwarded-Port $server_port;
|
||||
|
||||
# Proxy timeouts
|
||||
proxy_connect_timeout 60s;
|
||||
proxy_send_timeout 60s;
|
||||
proxy_read_timeout 60s;
|
||||
|
||||
# Sub_filter
|
||||
proxy_set_header Accept-Encoding "";
|
||||
sub_filter_once off;
|
||||
sub_filter_types *;
|
||||
sub_filter /sabnzbd %%ingress_entry%%/;
|
||||
}
|
||||
proxy_set_header Accept-Encoding "";
|
||||
# Correct url without port when using https
|
||||
sub_filter_once off;
|
||||
sub_filter_types *;
|
||||
sub_filter /sabnzbd %%ingress_entry%%/sabnzbd;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user