14 lines
312 B
Nginx Configuration File
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;
|
|
}
|
|
|
|
}
|