23 lines
937 B
Properties
23 lines
937 B
Properties
### This is the main configuration file of the application.
|
|
### Filtering of the @...@ values happens via the maven-resource-plugin. The execution of the plugin is configured in
|
|
### the Spring Boot parent POM.
|
|
spring.profiles.active=@activeProfiles@
|
|
|
|
info.app.name=NoBullShit Cloud - web container
|
|
info.app.description=Aggregator for web projects
|
|
info.build.group=@project.groupId@
|
|
info.build.artifact=@project.artifactId@
|
|
info.build.version=@project.version@
|
|
|
|
spring.messages.basename=i18n/container_messages,i18n/files_messages,i18n/dashboard_messages,i18n/notes_messages,i18n/todo_messages
|
|
|
|
spring.servlet.multipart.max-file-size=-1
|
|
spring.servlet.multipart.max-request-size=-1
|
|
|
|
logging.level.de.nbscloud=DEBUG
|
|
# No log file declaration as we want the process supervisor to take care of capturing the std out and redirect it
|
|
# (e.g. systemd -> journald)
|
|
|
|
server.servlet.context-path=/nbscloud
|
|
server.port=9966
|
|
server.address=localhost |