This commit is contained in:
Alexandre
2023-02-04 10:54:59 +01:00
parent f4b1535a2d
commit 54ede7bdbd
2 changed files with 17 additions and 30 deletions

View File

@@ -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;
}
}