xuang7 commented on code in PR #6130:
URL: https://github.com/apache/texera/pull/6130#discussion_r3549331672
##########
bin/single-node/nginx.conf:
##########
@@ -95,6 +95,12 @@ http {
proxy_set_header Host $host;
}
+ location /api/pve/ {
+ proxy_pass http://workflow-runtime-coordinator-service:8085;
+ proxy_set_header Host $host;
+ proxy_set_header X-Real-IP $remote_addr;
+ }
Review Comment:
Nginx prefix locations use longest-prefix matching rather than first-match
matching, so the file order does not matter here. Only regex locations are
order-sensitive, and this file does not contain any regex locations.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]