Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
M
mes-ui
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mes
mes-ui
Commits
49782f65
Commit
49782f65
authored
Jan 20, 2024
by
鲁鑫
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
dockerFile
parent
9cc7d39d
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
Dockerfile
Dockerfile
+31
-0
No files found.
Dockerfile
0 → 100644
View file @
49782f65
FROM
nginx
MAINTAINER
xin.lu
VOLUME
/tmp
ENV
LANG en_US.UTF-8
RUN
echo
"server {
\
listen 80;
\
client_max_body_size 50M;
\
location /stage-api/ {
\
proxy_pass http://192.168.3.91:8080/;
\
proxy_redirect off;
\
proxy_set_header Host mes-ui;
\
proxy_set_header X-Real-IP
\$
remote_addr;
\
proxy_set_header X-Forwarded-For
\$
proxy_add_x_forwarded_for;
\
}
\
#解决Router(mode: 'history')模式下,刷新路由地址不能找到页面的问题
\
location / {
\
root /var/mes/mes-ui/;
\
index index.html index.htm;
\
if (!-e
\$
request_filename) {
\
rewrite ^(.*)
\$
/index.html?s=
\$
1 last;
\
break;
\
}
\
}
\
access_log /var/log/nginx/access.log ;
\
} "
>
/etc/nginx/conf.d/default.conf
\
&&
mkdir
-p
/var/mes
\
&&
mkdir
-p
/var/mes/mes-ui
ADD
dist/ /var/mes/mes-ui/
EXPOSE
80
EXPOSE
443
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment