docker 发布vue nginx反向代理
client_max_body_size 500M;
server {
listen 12000;
server_name localhost;
# 以下是为了防止页面刷新自动添加 / 杠之后重定向url
absolute_redirect off; #取消绝对路径的重定向
# 开启gizp
gzip on;
gzip_buffers 32 4K;
gzip_comp_level 1;
gzip_min_length 100;
gzip_types application/javascript text/css text/xml;
gzip_disable "MSIE [1-6]\."; #配置禁用gzip条件,支持正则。此处表示ie6及以下不启用gzip(因为ie低版本不支持)
gzip_vary on;
#charset koi8-r;
#access_log /var/log/nginx/ main;
location / {
root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ @router;
client_max_body_size 500M;
}
location @router {
rewrite ^.*$ /index.html last;
}
#error_page 404 /;
# redirect server error pages to the static page /
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
location /api {
proxy_pass http://10.57.4.23:8091/api;
}
location /assets {
proxy_pass http://10.57.4.23:8091/assets;
}
location /MaterialIcons {
proxy_pass http://10.57.4.23:8091/MaterialIcons;
}
location /roboto {
proxy_pass http://10.57.4.23:8091/roboto;
}
location /xmesh-user-center {
proxy_pass http://10.57.4.23:11000/xmesh-user-center;
}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index ;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}