dermy/nginx.conf

15 lines
347 B
Nginx Configuration File
Raw Normal View History

2024-06-19 22:00:24 +00:00
server {
listen $SERVER_PORT;
server_name $SERVER_ADDRESS;
location / {
proxy_pass http://localhost:$API_PORT;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
}
}