瀏覽代碼

fix: proxy for authentication

Bryan Lee 1 年之前
父節點
當前提交
2f08290f07
共有 1 個文件被更改,包括 10 次插入0 次删除
  1. 10 0
      nginx/templates/authentication.nginx

+ 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;
+        }
+}