diff --git a/nginx/nginx.conf b/nginx/nginx.conf index 1321bf0..d7b67f8 100644 --- a/nginx/nginx.conf +++ b/nginx/nginx.conf @@ -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/; }