diff options
Diffstat (limited to 'env/prod/resources')
-rw-r--r-- | env/prod/resources/config.edn | 2 | ||||
-rw-r--r-- | env/prod/resources/logback.xml | 24 |
2 files changed, 26 insertions, 0 deletions
diff --git a/env/prod/resources/config.edn b/env/prod/resources/config.edn new file mode 100644 index 0000000..b48cfbd --- /dev/null +++ b/env/prod/resources/config.edn @@ -0,0 +1,2 @@ +{:production true + :port 3000} diff --git a/env/prod/resources/logback.xml b/env/prod/resources/logback.xml new file mode 100644 index 0000000..3829eff --- /dev/null +++ b/env/prod/resources/logback.xml @@ -0,0 +1,24 @@ +<?xml version="1.0" encoding="UTF-8"?> +<configuration> + <statusListener class="ch.qos.logback.core.status.NopStatusListener" /> + <appender name="FILE" class="ch.qos.logback.core.rolling.RollingFileAppender"> + <file>log/queue-api.log</file> + <rollingPolicy class="ch.qos.logback.core.rolling.TimeBasedRollingPolicy"> + <fileNamePattern>log/queue-api.%d{yyyy-MM-dd}.%i.log</fileNamePattern> + <timeBasedFileNamingAndTriggeringPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedFNATP"> + <maxFileSize>100MB</maxFileSize> + </timeBasedFileNamingAndTriggeringPolicy> + <!-- keep 30 days of history --> + <maxHistory>30</maxHistory> + </rollingPolicy> + <encoder> + <charset>UTF-8</charset> + <pattern>%date{ISO8601} [%thread] %-5level %logger{36} - %msg %n</pattern> + </encoder> + </appender> + <logger name="org.apache.http" level="warn" /> + <logger name="org.xnio.nio" level="warn" /> + <root level="INFO"> + <appender-ref ref="FILE" /> + </root> +</configuration> |