Browse Source

fix: 修改端口

master
liuchen 8 months ago
parent
commit
a5ce76bc41
  1. 4
      .env.production
  2. 4
      .env.test
  3. 11
      nginx.conf

4
.env.production

@ -1,8 +1,8 @@
# port
VITE_DEV_PORT = '25100'
VITE_DEV_PORT = '25101'
# production path
VITE_BASE_URL = 'http://10.62.193.15:25100/api'
VITE_BASE_URL = 'http://10.62.193.15:25101/api'
# 租户开关
VITE_APP_TENANT_ENABLE=true

4
.env.test

@ -1,8 +1,8 @@
# port
VITE_DEV_PORT = '8080'
VITE_DEV_PORT = '25101'
# production path
VITE_BASE_URL = 'http://dev.ccwin-in.com:25100/api'
VITE_BASE_URL = 'http://dev.ccwin-in.com:25101/api'
# 租户开关
VITE_APP_TENANT_ENABLE=true

11
nginx.conf

@ -26,10 +26,21 @@ http {
gzip_types text/plain application/javascript text/css application/xml text/javascript image/jpeg image/gif image/png;
gzip_vary on;
gzip_disable "MSIE [1-6]\.";
upstream sfms3.0 {
server localhost:25110 weight=10 max_fails=3 fail_timeout=10s;
}
server {
listen 25101;
server_name_in_redirect off;
server_name dev.ccwin-in.com;
location /api/ {
proxy_pass http://sfms3.0/;
proxy_next_upstream http_500 http_502 http_503 http_504 error timeout invalid_header;
proxy_set_header X-Forwared-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
}
location / {
proxy_cache my_zone;
proxy_cache_valid 200 304 12h;

Loading…
Cancel
Save