1+ server :
2+ port : 9100
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 : test
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+ # platform: postgres
24+ # driverClassName: org.postgresql.Driver
25+ # url: jdbc:postgresql://localhost:5432/lsss
26+
27+ username : spring
28+ password : spring
29+
30+ max-active : 100
31+ max-idle : 8
32+ min-idle : 8
33+ initial-size : 10
34+ test-on-borrow : true
35+ test-on-return : false
36+ test-while-idle : true
37+ defaultAutoCommit : false
38+ validation-query : select version();
39+
40+ jpa :
41+ database-platform : org.hibernate.dialect.H2Dialect
42+ # database-platform: org.hibernate.dialect.PostgreSQLDialect
43+
44+ show-sql : false
45+ hibernate.ddl-auto : create-drop
46+
47+ ---
48+ app :
49+ projects.url : http://localhost:${server.port}/mock/projects
50+
51+ whitelist : 127.0.0.1
52+
53+ # ###########################
54+ # Framework app properties #
55+ # ###########################
56+ # edu.tamu.weaver.auth.service.UserCredentialsService
57+ authority.admins : 402001311,613001223,102001721,222004429,709005486,523008230,724001395,123456789
58+ security :
59+ # edu.tamu.weaver.auth.service.CryptoService
60+ secret : verysecretsecret
61+ # edu.tamu.weaver.filter.CorsFilter
62+ 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
63+ # edu.tamu.weaver.email.config.WeaverEmailConfig
64+ email :
65+ host : relay.tamu.edu
66+ from : noreply@library.tamu.edu
67+ replyTo : helpdesk@library.tamu.edu
68+ # edu.tamu.weaver.reporting.controller.ReportingController
69+ reporting.address : helpdesk@library.tamu.edu
70+ # edu.tamu.weaver.validation.controller.ValidationsController
71+ model.packages : edu.tamu.app.model
72+ # edu.tamu.weaver.utility.HttpUtility
73+ http.timeout : 10000
74+
75+ ---
76+ # ############################
77+ # Framework auth properties #
78+ # ############################
79+ # edu.tamu.weaver.token.service.TokenService
80+ auth :
81+ security :
82+ jwt :
83+ secret : verysecretsecret
84+ issuer : localhost
85+ duration : 1
86+ # edu.tamu.weaver.token.provider.controller.TokenController
87+ path : /auth
88+
89+ ---
90+ # ############################
91+ # Framework shib properties #
92+ # ############################
93+ # edu.tamu.weaver.token.provider.controller.TokenController
94+ shib :
95+ keys : netid,uin,lastName,firstName,email
96+ subject : email
97+ netid : edupersonprincipalnameunscoped
98+ uin : tamuuin
99+ lastName : tdl-sn
100+ firstName : tdl-givenname
101+ email : tdl-mail
0 commit comments