blob: cd4627095d33401cd3dea2bf32799f26890fe467 [file] [log] [blame]
刘洪青2d0f5e22018-07-26 14:01:50 +08001server.port=8080
2
3## logging
4logging.level.root=INFO
5logging.level.org.springframework.web=INFO
刘洪青35511b92018-07-26 15:00:07 +08006logging.level.com.supwisdom.leaveschool=DEBUG
刘洪青2d0f5e22018-07-26 14:01:50 +08007
8## thymeleaf
9spring.thymeleaf.cache=false
10
11
12## 认证方式,是否开启 CAS 认证
13security.cas.enabled=true
14
15## CAS
16#应用访问地址
17app.server.host.url=http://localhost:8080
18#应用登录地址
19app.login.url=/web/caslogin
20#应用登出地址
21app.logout.url=/web/logout
22
23#CAS服务地址
24cas.server.host.url=http://101.231.81.202:9080/cas
25#CAS服务登录地址
26cas.server.host.login_url=${cas.server.host.url}/login
27#CAS服务登出地址
28cas.server.host.logout_url=${cas.server.host.url}/logout?service=${app.server.host.url}