This repository has been archived by the owner on May 21, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
config.yml
89 lines (79 loc) · 2.22 KB
/
config.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#
# Copyright © 2019 Smoke Turner, LLC ([email protected])
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Netty-specific options.
netty:
# Port to listen on for new events
listenPort: ${PORT:-4433}
# Maximum line length
maxLength: 100KB
ssl: true
selfSignedCert: false
clientAuth: true
keyCertChainFile: scripts/server.crt
keyFile: scripts/server_pkcs8.key
#keyPassword: changeit
trustCertCollectionFile: scripts/ca.crt
filters:
accept:
- 127.0.0.1
# AWS-specific options.
aws:
bucketName: smoketurner-uploads
region: us-east-1
prefix: events
# Maximum upload size
maxUploadSize: 10MB
# HTTP-specific options.
server:
applicationConnectors:
- type: https
port: 8443
keyStorePath: scripts/keystore.jks
keyStorePassword: changeit
trustStorePath: scripts/truststore.jks
trustStorePassword: changeit
needClientAuth: true
# see https://github.com/dropwizard/dropwizard/issues/1710
validateCerts: false
validatePeers: true
allowRenegotiation: false
# needed to support curl
excludedCipherSuites:
- SSL_RSA_WITH_DES_CBC_SHA
- SSL_DHE_RSA_WITH_DES_CBC_SHA
- SSL_DHE_DSS_WITH_DES_CBC_SHA
- SSL_RSA_EXPORT_WITH_RC4_40_MD5
- SSL_RSA_EXPORT_WITH_DES40_CBC_SHA
- SSL_DHE_RSA_EXPORT_WITH_DES40_CBC_SHA
- SSL_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA
adminConnectors:
- type: http
port: 8180
requestLog:
appenders:
- type: console
timeZone: UTC
target: stdout
logging:
level: INFO
loggers:
com.smoketurner.uploader: DEBUG
io.netty: INFO
software.amazon.awssdk: INFO
appenders:
- type: console
timeZone: UTC
target: stdout