278fdea2ae0501fbe4fdbb37b753743facb635e1
[sdc.git] / catalog-be / src / main / docker / backend / chef-repo / cookbooks / sdc-catalog-be / templates / default / ssl-ini.erb
1 # ---------------------------------------
2 # Module: ssl
3 --module=ssl
4
5 ### TLS(SSL) Connector Configuration
6
7 ## Connector host/address to bind to
8 # jetty.ssl.host=0.0.0.0
9
10 ## Connector port to listen on
11 jetty.ssl.port=<%= @https_port %>
12
13 ## Connector idle timeout in milliseconds
14 # jetty.ssl.idleTimeout=30000
15
16 ## Connector socket linger time in seconds (-1 to disable)
17 # jetty.ssl.soLingerTime=-1
18
19 ## Number of acceptors (-1 picks default based on number of cores)
20 # jetty.ssl.acceptors=-1
21
22 ## Number of selectors (-1 picks default based on number of cores)
23 # jetty.ssl.selectors=-1
24
25 ## ServerSocketChannel backlog (0 picks platform default)
26 # jetty.ssl.acceptorQueueSize=0
27
28 ## Thread priority delta to give to acceptor threads
29 # jetty.ssl.acceptorPriorityDelta=0
30
31 ## Whether request host names are checked to match any SNI names
32 # jetty.ssl.sniHostCheck=true
33
34 ## max age in seconds for a Strict-Transport-Security response header (default -1)
35 # jetty.ssl.stsMaxAgeSeconds=31536000
36
37 ## include subdomain property in any Strict-Transport-Security header (default false)
38 # jetty.ssl.stsIncludeSubdomains=true
39
40 ### SslContextFactory Configuration
41 ## Note that OBF passwords are not secure, just protected from casual observation
42 ## See http://www.eclipse.org/jetty/documentation/current/configuring-security-secure-passwords.html
43
44 ## Keystore file path (relative to $jetty.base)
45 jetty.sslContext.keyStorePath=etc/org.onap.sdc.p12
46
47 ## Truststore file path (relative to $jetty.base)
48 jetty.sslContext.trustStorePath=etc/org.onap.sdc.trust.jks
49
50 ## Keystore password
51 # jetty.sslContext.keyStorePassword=OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4
52 jetty.sslContext.keyStorePassword=<%= @jetty_keystore_pwd %>
53
54 ## Keystore type and provider
55 # jetty.sslContext.keyStoreType=JKS
56 # jetty.sslContext.keyStoreProvider=
57
58 ## KeyManager password
59 # jetty.sslContext.keyManagerPassword=OBF:1u2u1wml1z7s1z7a1wnl1u2g
60 jetty.sslContext.keyManagerPassword=<%= @jetty_keymanager_pwd %>
61
62 ## Truststore password
63 # jetty.sslContext.trustStorePassword=OBF:1vny1zlo1x8e1vnw1vn61x8g1zlu1vn4
64 jetty.sslContext.trustStorePassword=<%= @jetty_truststore_pwd %>
65
66 ## Truststore type and provider
67 # jetty.sslContext.trustStoreType=JKS
68 # jetty.sslContext.trustStoreProvider=
69
70 ## whether client certificate authentication is required
71 # jetty.sslContext.needClientAuth=false
72
73 ## Whether client certificate authentication is desired
74 # jetty.sslContext.wantClientAuth=false
75
76 ## Whether cipher order is significant (since java 8 only)
77 # jetty.sslContext.useCipherSuitesOrder=true
78
79 ## To configure Includes / Excludes for Cipher Suites or Protocols see tweak-ssl.xml example at
80 ## https://www.eclipse.org/jetty/documentation/current/configuring-ssl.html#configuring-sslcontextfactory-cipherSuites
81
82 ## Set the size of the SslSession cache
83 # jetty.sslContext.sslSessionCacheSize=-1
84
85 ## Set the timeout (in seconds) of the SslSession cache timeout
86 # jetty.sslContext.sslSessionTimeout=-1
87
88 ## Allow SSL renegotiation
89 # jetty.sslContext.renegotiationAllowed=true
90 # jetty.sslContext.renegotiationLimit=5