sprint/nginx/nginx.conf
Egor Matveev 82e826ee61 cluster
2022-03-31 11:52:41 +03:00

16 lines
258 B
Nginx Configuration File

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