3 Star 4 Fork 2

XieDong/kisso-springboot-demo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
nginx.conf 855 Bytes
一键复制 编辑 原始数据 按行查看 历史
XieDong 提交于 2018-01-11 15:04 . springboot kisso demo
worker_processes 1;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
server {
listen 8089;
server_name localhost;
location sso/ {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
server {
listen 8888;
server_name localhost;
location client/ {
root html;
index index.html index.htm;
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/xfh090486/kisso-springboot-demo.git
[email protected]:xfh090486/kisso-springboot-demo.git
xfh090486
kisso-springboot-demo
kisso-springboot-demo
master

搜索帮助