Эх сурвалжийг харах

fix: proxy for authentication

Bryan Lee 1 жил өмнө
parent
commit
2f08290f07

+ 10 - 0
nginx/templates/authentication.nginx

@@ -0,0 +1,10 @@
+server {
+        # Forward requests for the authentication server.
+        listen [::]:8000;
+        listen 8000;
+        server_name {domain};
+
+        location / {
+                proxy_pass              http://127.0.0.1:18000;
+        }
+}