sprint/nginx/nginx.conf
Egor Matveev eb28a430c2 cluster
2022-03-29 16:28:48 +03:00

16 lines
260 B
Nginx Configuration File

events {}
http {
server {
listen 80;
server_name a.com;
location ~ /cluster {
rewrite ^/cluster(.*) http://127.0.0.1:888/;
}
location / {
proxy_pass http://web:8000/;
}
}
}