Browse Source

ci: 新增nginx config 配置

pull/1/head
chrysalis1215 3 years ago
parent
commit
2ed81f5e26
  1. 20
      docker/nginx.conf
  2. 3
      src/permisson.js

20
docker/nginx.conf

@ -0,0 +1,20 @@
server {
if ($request_method = HEAD) {
return 200;
}
location / {
alias /usr/share/nginx/html/;
index index.html index.htm;
try_files $uri $uri/ /index.html;
}
access_log /var/log/nginx/access.log main;
error_log /var/log/nginx/error.log error;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
}

3
src/permisson.js

@ -23,9 +23,6 @@ router.beforeEach(async (to, from, next) => {
return;
}
// console.log('当前登录用户');
// console.log(user);
if (authenticationMethod === 'smartProxy') {
// 当登录方式为内网登录,则走智能网关进行OA登录鉴权,并获取用户信息
if (user.loginName === '') {

Loading…
Cancel
Save