Standardize the HTTP interface route prefix by adding the project name /oryx by default. This provides a distinctive feature for configuring reverse proxy in nginx during integration. Currently, there is a need for a page to investigate any omissions, as manually searching for distinctive features on the page is prone to errors and inefficient.
location ~* ^/(mgmt|terraform|tools|live|players)/ {
proxy_pass http://127.0.0.1:2022;
proxy_http_version 1.1;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_read_timeout 12000s;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $host;
}
TRANS_BY_GPT4
Standardize the HTTP interface route prefix by adding the project name
/oryxby default. This provides a distinctive feature for configuring reverse proxy in nginx during integration. Currently, there is a need for a page to investigate any omissions, as manually searching for distinctive features on the page is prone to errors and inefficient.TRANS_BY_GPT4