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