15 lines
356 B
Nginx Configuration File
15 lines
356 B
Nginx Configuration File
server {
|
|
listen 80;
|
|
server_name aalai.ai www.aalai.ai 185.100.212.76;
|
|
|
|
location / {
|
|
proxy_pass http://frontend:8300;
|
|
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;
|
|
}
|
|
|
|
|
|
} |