client_max_body_size 500M;
server {
listen 12000;
server_name localhost;
# The following is to prevent the page refresh from automatically adding / redirecting the url after redirecting it
absolute_redirect off; #Cancel the redirection of absolute paths
# Enable 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]\."; #Configure disable gzip conditions and support regularity. Here it means that gzip is not enabled for ie6 and below (because ie low version does not support it)
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;
#}
}