1+ server :
2+ port : 9000
3+ contextPath :
4+
5+ ---
6+ logging :
7+ level :
8+ edu.tamu : INFO
9+ org.springframework : INFO
10+ file : logs/lsss.log
11+
12+ ---
13+ security.basic.enabled : false
14+
15+ ---
16+ spring :
17+ profiles.active : production
18+
19+ datasource :
20+ platform : h2
21+ driverClassName : org.h2.Driver
22+ url : jdbc:h2:mem:AZ;DB_CLOSE_DELAY=-1;DB_CLOSE_ON_EXIT=FALSE
23+
24+ username : spring
25+ password : spring
26+
27+ max-active : 100
28+ max-idle : 8
29+ min-idle : 8
30+ initial-size : 10
31+ test-on-borrow : true
32+ test-on-return : false
33+ test-while-idle : true
34+ defaultAutoCommit : false
35+ validation-query : select version();
36+
37+ jpa :
38+ database-platform : org.hibernate.dialect.H2Dialect
39+
40+ show-sql : false
41+ hibernate.ddl-auto : create-drop
42+
43+ ---
44+ app :
45+ projects.url : http://localhost:9001/projects
46+
47+ whitelist : 127.0.0.1
48+
49+ # ###########################
50+ # Framework app properties #
51+ # ###########################
52+ # edu.tamu.weaver.auth.service.UserCredentialsService
53+ authority.admins : 402001311,613001223,102001721,222004429,709005486,523008230,724001395,123456789
54+ security :
55+ # edu.tamu.weaver.auth.service.CryptoService
56+ secret : verysecretsecret
57+ # edu.tamu.weaver.filter.CorsFilter
58+ allow-access : http://localhost,http://localhost:8080,http://machuff.tamu.edu,http://janus.evans.tamu.edu,http://savell.evans.tamu.edu,http://jmicah.tamu.edu
59+ # edu.tamu.weaver.email.config.WeaverEmailConfig
60+ email :
61+ host : relay.tamu.edu
62+ from : noreply@library.tamu.edu
63+ replyTo : helpdesk@library.tamu.edu
64+ # edu.tamu.weaver.reporting.controller.ReportingController
65+ reporting.address : helpdesk@library.tamu.edu
66+ # edu.tamu.weaver.validation.controller.ValidationsController
67+ model.packages : edu.tamu.app.model
68+ # edu.tamu.weaver.utility.HttpUtility
69+ http.timeout : 10000
70+
71+ ---
72+ # ############################
73+ # Framework auth properties #
74+ # ############################
75+ # edu.tamu.weaver.token.service.TokenService
76+ auth :
77+ security :
78+ jwt :
79+ secret : verysecretsecret
80+ issuer : localhost
81+ duration : 1
82+ # edu.tamu.weaver.token.provider.controller.TokenController
83+ path : /auth
84+
85+ ---
86+ # ############################
87+ # Framework shib properties #
88+ # ############################
89+ # edu.tamu.weaver.token.provider.controller.TokenController
90+ shib :
91+ keys : netid,uin,lastName,firstName,email
92+ subject : email
93+ netid : edupersonprincipalnameunscoped
94+ uin : tamuuin
95+ lastName : tdl-sn
96+ firstName : tdl-givenname
97+ email : tdl-mail
0 commit comments