This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
( cat <<-EOF | |
ListenAddr = ":8080" | |
DockerURL = "$SWARM_HOST" | |
TLSCACert = "/certs/ca.pem" | |
TLSCert = "/certs/cert.pem" | |
TLSKey = "/certs/key.pem" | |
[[Extensions]] | |
Name = "nginx" | |
ConfigPath = "/etc/nginx/nginx.conf" | |
PidPath = "/var/run/nginx.pid" | |
TemplatePath = "/etc/interlock/nginx.conf.template" | |
MaxConn = 1024 | |
Port = 80 | |
SSLPort = 443 | |
SSLCertPath = "/etc/ssl/" | |
ProxyConnectTimeout = 600 | |
ProxySendTimeout = 600 | |
ProxyReadTimeout = 600 | |
SSLCiphers = "ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA:ECDHE-RSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-RSA-AES256-SHA256:DHE-RSA-AES256-SHA:ECDHE-ECDSA-DES-CBC3-SHA:ECDHE-RSA-DES-CBC3-SHA:EDH-RSA-DES-CBC3-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:DES-CBC3-SHA:!DSS" | |
SSLProtocols = "TLSv1 TLSv1.1 TLSv1.2" | |
EOF | |
) > /etc/config.toml | |
# run interlock | |
/bin/interlock run -c /etc/config.toml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment