🗝
summary refs log tree commit diff
path: root/nginx
diff options
context:
space:
mode:
authormia <mia@mia.jetzt>2024-10-26 11:57:40 -0700
committermia <mia@mia.jetzt>2024-10-26 11:57:40 -0700
commitb43f9d5e0681b90947648cfb4a9660f8ae568a3d (patch)
tree5a705a0b04feabb3cca198adfa5779a1d5cb929f /nginx
parent9c2f37d826a72590fdc4377d85afd4ac665c71be (diff)
downloadasylum-b43f9d5e0681b90947648cfb4a9660f8ae568a3d.tar.gz
asylum-b43f9d5e0681b90947648cfb4a9660f8ae568a3d.zip
voice level proxy HEAD main
Diffstat (limited to 'nginx')
-rw-r--r--nginx/nginx.conf16
1 files changed, 16 insertions, 0 deletions
diff --git a/nginx/nginx.conf b/nginx/nginx.conf
index 0137b11..7ce4846 100644
--- a/nginx/nginx.conf
+++ b/nginx/nginx.conf
@@ -171,4 +171,20 @@ http {
             proxy_set_header Connection $connection_upgrade;
         }
     }
+
+    # voicelevelproxy
+    server {
+        listen 80;
+        listen [::]:80;
+        server_name vlp.mia.jetzt;
+
+        location / {
+            proxy_pass http://localhost:6503;
+            proxy_http_version 1.1;
+            proxy_redirect off;
+            proxy_set_header Host $http_host;
+            proxy_set_header Upgrade $http_upgrade;
+            proxy_set_header Connection $connection_upgrade;
+        }
+    }
 }