Files
Dwinzo_Demo/nginx-compose.conf

14 lines
335 B
Plaintext
Raw Normal View History

server {
listen 80;
2025-07-01 12:32:07 +00:00
server_name aalai.ai www.aalai.ai;
location / {
2025-07-01 13:05:18 +00:00
proxy_pass http://127.0.0.1:80;
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;
}
2025-07-01 12:32:07 +00:00
}