Commit f815c534 authored by 鲁鑫's avatar 鲁鑫

Dockerfile提交

parent 08c8338e
FROM nginx
MAINTAINER xin.lu
VOLUME /tmp
ENV LANG en_US.UTF-8
RUN echo "server { \
listen 81; \
client_max_body_size 50M; \
location /api/ { \
proxy_pass http://192.168.3.91:8084/; \
proxy_redirect off; \
proxy_set_header Host mes-pad; \
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-pad/; \
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-pad
ADD / /var/mes/mes-pad/
EXPOSE 80
EXPOSE 443
......@@ -21,8 +21,8 @@ const config = {
}
// 设置后台接口服务的基础地址
config.baseUrl = 'http://localhost:8080';
//config.baseUrl = 'http://localhost:8080';
//config.baseUrl = "http://101.43.244.58:8080/";
//config.baseUrl = "/api";
config.baseUrl = "/api";
export default config;
\ No newline at end of file
{
"name" : "ktg-mes-pad",
"appid" : "__UNI__ECAC3FC",
"appid" : "__UNI__86F3F47",
"description" : "MES-PAD",
"versionName" : "1.0.0",
"versionCode" : "100",
......
......@@ -17,7 +17,7 @@ module.exports = {
devServer: {
proxy: {
'/api': {
target: 'http://101.43.244.58:8080/',
target: 'http://192.168.3.91:8080/',
changeOrigin: true,
pathRewrite: {
'^/api': ''
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment