Browse Source

修改端口

master
liuchen864 1 year ago
parent
commit
99703cae84
  1. 2
      .env.dev
  2. 2
      .env.static
  3. 2
      nginx.conf
  4. 4
      src/views/login.vue
  5. 2
      vue.config.js

2
.env.dev

@ -5,7 +5,7 @@ ENV = 'development'
VUE_APP_TITLE = 闻荫管理系统 VUE_APP_TITLE = 闻荫管理系统
# 闻荫管理系统/开发环境 # 闻荫管理系统/开发环境
VUE_APP_BASE_API = 'http://localhost:48080' VUE_APP_BASE_API = 'http://localhost:12080'
# 路由懒加载 # 路由懒加载
VUE_CLI_BABEL_TRANSPILE_MODULES = true VUE_CLI_BABEL_TRANSPILE_MODULES = true

2
.env.static

@ -7,7 +7,7 @@ ENV = 'staging'
VUE_APP_TITLE = 闻荫管理系统 VUE_APP_TITLE = 闻荫管理系统
# 闻荫管理系统/测试环境 # 闻荫管理系统/测试环境
VUE_APP_BASE_API = 'http://127.0.0.1:48080' VUE_APP_BASE_API = 'http://127.0.0.1:12080'
# 根据服务器或域名修改 # 根据服务器或域名修改
PUBLIC_PATH = '/admin-ui-vue2/' PUBLIC_PATH = '/admin-ui-vue2/'

2
nginx.conf

@ -17,7 +17,7 @@ server {
} }
location /prod-api/ { ## 后端项目 - 管理后台 location /prod-api/ { ## 后端项目 - 管理后台
proxy_pass http://win-server:48080/; ## 重要!!!proxy_pass 需要设置为后端项目所在服务器的 IP proxy_pass http://win-server:12080/; ## 重要!!!proxy_pass 需要设置为后端项目所在服务器的 IP
proxy_set_header Host $http_host; proxy_set_header Host $http_host;
proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Real-IP $remote_addr;
proxy_set_header REMOTE-HOST $remote_addr; proxy_set_header REMOTE-HOST $remote_addr;

4
src/views/login.vue

@ -293,8 +293,8 @@ export default {
// redirectUri // redirectUri
const redirectUri = location.origin + '/social-login?' const redirectUri = location.origin + '/social-login?'
+ encodeURIComponent('type=' + socialTypeEnum.type + '&redirect=' + (this.redirect || "/")); // + encodeURIComponent('type=' + socialTypeEnum.type + '&redirect=' + (this.redirect || "/")); //
// const redirectUri = 'http://127.0.0.1:48080/api/gitee/callback'; // const redirectUri = 'http://127.0.0.1:12080/api/gitee/callback';
// const redirectUri = 'http://127.0.0.1:48080/api/dingtalk/callback'; // const redirectUri = 'http://127.0.0.1:4801208080/api/dingtalk/callback';
// //
socialAuthRedirect(socialTypeEnum.type, encodeURIComponent(redirectUri)).then((res) => { socialAuthRedirect(socialTypeEnum.type, encodeURIComponent(redirectUri)).then((res) => {
// console.log(res.url); // console.log(res.url);

2
vue.config.js

@ -36,7 +36,7 @@ module.exports = {
proxy: { proxy: {
// detail: https://cli.vuejs.org/config/#devserver-proxy // detail: https://cli.vuejs.org/config/#devserver-proxy
['/proxy-api']: { ['/proxy-api']: {
target: `http://localhost:48080`, target: `http://localhost:12080`,
// target: `http://api-dashboard.win.iocoder.cn`, // target: `http://api-dashboard.win.iocoder.cn`,
changeOrigin: true, changeOrigin: true,
pathRewrite: { pathRewrite: {

Loading…
Cancel
Save