1
0
mirror of https://github.com/immich-app/immich.git synced 2024-12-26 10:50:29 +02:00

fix nginx conf file (#1229)

This commit is contained in:
Vedhavyas Singareddi 2022-12-30 16:42:24 +05:30 committed by GitHub
parent 4ff92d739d
commit f7d3c4b4ff
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -27,13 +27,13 @@ http {
# } # }
upstream server { upstream server {
server $IMMICH_SERVER_HOST server $IMMICH_SERVER_HOST;
keepalive 2 keepalive 2;
} }
upstream web { upstream web {
server $IMMICH_WEB_HOST server $IMMICH_WEB_HOST;
keepalive 2 keepalive 2;
} }
server { server {