fix(librephotos): fix nginx host (#1891)

This commit is contained in:
Stavros Kois 2022-02-13 23:21:52 +02:00 committed by GitHub
parent 1e1ed16595
commit 27b0af376d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ name: librephotos
sources:
- https://github.com/LibrePhotos/librephotos
- https://hub.docker.com/r/reallibrephotos/librephotos
version: 0.0.1
version: 0.0.2
annotations:
truecharts.org/catagories: |
- media

View File

@ -30,7 +30,7 @@ data:
location ~ ^/(api|media)/ {
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header Host $host;
proxy_set_header Host localhost;
include uwsgi_params;
proxy_pass http://localhost:8001;
}