修改环境配置

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

25
doc/info.txt Normal file
View File

@ -0,0 +1,25 @@
我发一下服务器的信息:
grow.xxzzu.com
47.92.6.215
mysql 和 linux 的密码都是
gywj@1qaz@WSX
数据库使用
sys_manager
测试存储过程可以使用
proc_DS01E_enterprise_info
当前ms_muster 数据库 未更新,等开发模式确定后,一起逐一更新数据结构
小象智租 微信 开发者ID(AppID)
AppIDwx08196c4219236ab5
AppSecret9a131c53016eb64e1f55161326307bbf
appIdwx08196c4219236ab5
授权回调域grow.xxzzu.com
微信开放平台open.weixin.qq.com
注册邮箱jcjytbkt@126.com
密码xx-621588+-

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;
}
}