|
|
|
@ -27,7 +27,7 @@ http {
|
|
|
|
|
keepalive_timeout 65;
|
|
|
|
|
|
|
|
|
|
gzip on;
|
|
|
|
|
gzip gzip_comp_level 9;
|
|
|
|
|
gzip_comp_level 9;
|
|
|
|
|
|
|
|
|
|
absolute_redirect off;
|
|
|
|
|
|
|
|
|
@ -38,14 +38,15 @@ http {
|
|
|
|
|
|
|
|
|
|
#access_log /var/log/nginx/host.access.log main;
|
|
|
|
|
|
|
|
|
|
location / {
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
|
location / { proxy_pass http://nginx; }
|
|
|
|
|
location /buscribelrr {
|
|
|
|
|
alias /usr/share/nginx/html/buscribe;
|
|
|
|
|
}
|
|
|
|
|
location /buscribe {
|
|
|
|
|
root /usr/share/nginx/html/buscribe;
|
|
|
|
|
index index.html index.htm;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
location / { proxy_pass http://nginx; }
|
|
|
|
|
location /buscribelrr { proxy_pass http://buscribeapilrr; }
|
|
|
|
|
location /buscribelrr/json { proxy_pass http://buscribeapilrr/buscribe/json; }
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|