feat: env update

This commit is contained in:
louis 2024-03-28 11:20:27 +08:00
parent 6f162a4285
commit ff5bb2a2ec
2 changed files with 4 additions and 3 deletions

View File

@ -4,7 +4,7 @@ ENV = 'production'
# base api url
# VITE_BASE_API_URL = 'https://nest-api.buqiyuan.site'
# VITE_BASE_API_URL = 'http://123.249.107.55'
VITE_BASE_API_URL = 'http://123.249.107.55'
VITE_BASE_API_URL = 'http://144.123.43.138:3001'
# 公共基础路径, 所有资源的路径都将据此配置重写。
VITE_BASE_URL = /api

View File

@ -34,6 +34,7 @@ http {
server {
listen 3001;
server_name 144.123.43.138;
absolute_redirect off; #取消绝对路径的重定向
sendfile on;
default_type application/octet-stream;
@ -60,7 +61,7 @@ http {
# 后端服务
location ^~ /api/ {
location /api/ {
proxy_pass http://huaxin-admin-server:8001/api/; # 转发规则
proxy_set_header Host $proxy_host; # 修改转发请求头,让目标应用可以受到真实的请求
proxy_set_header X-Real-IP $remote_addr;
@ -68,7 +69,7 @@ http {
}
# websocket服务
location ^~ /ws-api/ {
location /ws-api/ {
proxy_pass http://huaxin-admin-server:8002/ws-api/;
proxy_read_timeout 300s;
proxy_send_timeout 300s;