sprint/nginx/nginx.conf
Egor Matveev 1a3963c545 cluster
2022-03-31 11:45:05 +03:00

16 lines
244 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name a.com;
location /cluster {
proxy_pass http://0.0.0.0:888;
}
location / {
proxy_pass http://web:8000/;
}
}
}