修改环境配置

This commit is contained in:
liujiangtao
2020-07-25 12:39:47 +08:00
parent b5b78b4fff
commit 9e73f6c52b
49 changed files with 2746 additions and 83 deletions

30
doc/xxzzu.conf Normal file
View File

@ -0,0 +1,30 @@
server {
listen 80;
server_name grow.xxzzu.com;
location ^~ /system {
proxy_pass http://127.0.0.1:8081;
}
location ~ .*\.(js|css)?$ {
expires 12h;
access_log off;
}
location / {
index index.html index index.htm;
alias /www/muster-ui;
}
location ^~ /common/ {
proxy_pass http://127.0.0.1:8081;
}
#文件资源映射路径
location /profile {
alias /www/muster/upload;
access_log off;
log_not_found off;
}
}