* better check on host and port for password reset and make context roots more flexible * spotless applied * removed hardcoded /WebGoat from js * removed hardcoded /WebGoat from js * fix spotless * fix scoreboard * upgrade WebWolf bootstrap version and icons and templates - part 1 * fixed more bootstrap 5 style issues and context path issues * organized WebSecurityConfig based on latest conventions and added basic support for oauth (more work needed) * spotless applied * added mock bean * requires updates to properties - commented for now * requires updates to properties - commented for now * oauth secrets through env values * user creation after oauth login * integration test against non default context paths * adjusted StartupMessage * add global model element username * conditionally show login oauth links * fixed WebWolf login --------- Co-authored-by: René Zubcevic <rene@Mac-mini-van-Rene.local>
56 lines
1.9 KiB
Properties
56 lines
1.9 KiB
Properties
server.error.include-stacktrace=always
|
|
server.error.path=/error.html
|
|
server.servlet.context-path=${webwolf.context}
|
|
server.port=${webwolf.port}
|
|
server.address=${webwolf.host}
|
|
spring.application.name=WebWolf
|
|
|
|
webwolf.host=${WEBWOLF_HOST:127.0.0.1}
|
|
webwolf.port=${WEBWOLF_PORT:9090}
|
|
webwolf.context=${WEBWOLF_CONTEXT:/WebWolf}
|
|
|
|
management.server.port=-1
|
|
server.servlet.session.cookie.name=WEBWOLFSESSION
|
|
server.servlet.session.timeout=6000
|
|
spring.flyway.enabled=false
|
|
|
|
spring.thymeleaf.prefix=classpath:/webwolf/templates/
|
|
|
|
|
|
spring.datasource.url=jdbc:hsqldb:file:${webgoat.server.directory}/webgoat
|
|
spring.jpa.properties.hibernate.dialect=org.hibernate.dialect.HSQLDialect
|
|
spring.datasource.driver-class-name=org.hsqldb.jdbc.JDBCDriver
|
|
spring.jpa.properties.hibernate.default_schema=CONTAINER
|
|
spring.jpa.open-in-view=false
|
|
spring.messages.basename=i18n/messages
|
|
spring.jmx.enabled=false
|
|
|
|
logging.level.org.springframework=INFO
|
|
logging.level.org.springframework.boot.devtools=WARN
|
|
logging.level.org.owasp=DEBUG
|
|
logging.level.org.owasp.webwolf=TRACE
|
|
|
|
management.httpexchanges.recording.include=REQUEST_HEADERS,RESPONSE_HEADERS,COOKIE_HEADERS,TIME_TAKEN
|
|
management.endpoint.httptrace.enabled=true
|
|
|
|
spring.thymeleaf.cache=false
|
|
|
|
multipart.enabled=true
|
|
multipart.file-size-threshold=0 #
|
|
multipart.location=${java.io.tmpdir}
|
|
multipart.max-file-size=1Mb
|
|
multipart.max-request-size=1Mb
|
|
|
|
webgoat.build.version=@project.version@
|
|
webgoat.server.directory=${user.home}/.webgoat-${webgoat.build.version}/
|
|
webwolf.fileserver.location=${java.io.tmpdir}/webwolf-fileserver
|
|
|
|
spring.jackson.serialization.indent_output=true
|
|
spring.jackson.serialization.write-dates-as-timestamps=false
|
|
|
|
#For static file refresh ... and faster dev :D
|
|
spring.devtools.restart.additional-paths=webwolf/src/main/resources/static/
|
|
|
|
spring.security.oauth2.client.registration.github.client-id=${WEBWOLF_OAUTH_CLIENTID:dummy}
|
|
spring.security.oauth2.client.registration.github.client-secret=${WEBWOLF_OAUTH_CLIENTSECRET:dummy}
|