🔧 Added an entry for a socket passthrough

This commit is contained in:
2021-10-17 22:14:51 -07:00
parent e9d744f4f5
commit 9df5adb69c

View File

@@ -4,6 +4,12 @@ server {
proxy_pass http://localhost:8050; proxy_pass http://localhost:8050;
} }
} }
server {
listen 8051;
location / {
proxy_pass ws://localhost:8051;
}
}
server { server {
listen 3080; listen 3080;
@@ -16,7 +22,7 @@ server {
server { server {
listen 3000; listen 3000;
location /import-service { location /import {
proxy_pass http://localhost:3000; proxy_pass http://localhost:3000;
} }
} }