Files
zooid/nginx.conf
T
2025-10-01 07:23:43 -07:00

14 lines
312 B
Nginx Configuration File

server {
listen 80;
server_name *.yourdomain.com;
location / {
proxy_pass http://127.0.0.1:3334;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "Upgrade";
proxy_set_header Host $host;
}
}