Browse Source

fix nginx conf file (#1229)

Vedhavyas Singareddi 2 years ago
parent
commit
f7d3c4b4ff
1 changed files with 4 additions and 4 deletions
  1. 4 4
      nginx/nginx.conf

+ 4 - 4
nginx/nginx.conf

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