Commit 2e69d4da by lizefeng

Update nginx.conf

parent 9431dfcd
...@@ -688,12 +688,21 @@ http { ...@@ -688,12 +688,21 @@ http {
# tool api # tool api
server { server {
listen 80; listen 80;
server_name tool.bailuntec.com; server_name api.tool.bailuntec.com;
location / { location / {
proxy_pass http://tool-web-api.default; proxy_pass http://tool-web-api.default;
} }
} }
# tool ui
server {
listen 80;
server_name tool.bailuntec.com;
location / {
proxy_pass http://tool-ui.default;
}
}
# open ai test # open ai test
server { server {
listen 8746; listen 8746;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment