Update ingress.conf

This commit is contained in:
Alexandre
2021-05-20 17:17:25 +02:00
committed by GitHub
parent 3daf307c36
commit 0482d739db

View File

@@ -6,8 +6,15 @@ server {
client_max_body_size 0;
location / {
root /var/www/html/emby;
}
location / {
proxy_read_timeout 30;
proxy_pass http://backend;
proxy_set_header Range $http_range;
proxy_set_header If-Range $http_if_range;
}
location /embywebsocket {
proxy_pass http://backend;
}
}