1 Star 0 Fork 592

andy / kooteam

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx-kooteam.conf 666 Bytes
一键复制 编辑 原始数据 按行查看 历史
server{
listen 80;
# 换成你自己的域名,在钉钉插件中也需要配置该域名
server_name kooteam.dev.zeto.me;
client_max_body_size 20m;
charset utf-8;
location / {
# 这里换成kooteam应用的res文件夹路径
root /Users/chenrongfang/.m2/repository/res;
index home.html;
autoindex on;
rewrite ^[\w|\/]*\.htm$ /htm.html last;
rewrite ^[\w|\/]*\.htm\?(.+) /htm.html last;
rewrite ^[\w|\/]*\.wap /wap.html last;
rewrite ^[\w|\/]*\.wap\?(.+) /wap.html last;
}
location ~ \.(do|json) {
proxy_pass http://127.0.0.1:7053;
proxy_set_header Host $host;
proxy_redirect off;
}
}
Java
1
https://gitee.com/itestwork/kooteam.git
git@gitee.com:itestwork/kooteam.git
itestwork
kooteam
kooteam
master

搜索帮助