This commit is contained in:
Egor Matveev 2022-03-29 16:28:48 +03:00
parent 6915d337b5
commit eb28a430c2

View File

@ -5,6 +5,10 @@ http {
listen 80;
server_name a.com;
location ~ /cluster {
rewrite ^/cluster(.*) http://127.0.0.1:888/;
}
location / {
proxy_pass http://web:8000/;
}