Skip to content

Instantly share code, notes, and snippets.

@joeybaker
Last active August 29, 2015 14:02
Show Gist options
  • Save joeybaker/c7746eab0cce51dee3e2 to your computer and use it in GitHub Desktop.
Save joeybaker/c7746eab0cce51dee3e2 to your computer and use it in GitHub Desktop.
sample bud config
{
"daemon": false,
"workers": 1,
"restart_timeout": 250,
"log": {
"level": "notice",
"facility": "user",
"stdio": true,
"syslog": false
},
"availability": {
"death_timeout": 1000,
"revive_interval": 2500,
"retry_interval": 250,
"max_retries": 5
},
"frontend": {
"port": 1443,
"host": "0.0.0.0",
"keepalive": 3600,
"security": "tls12",
"server_preference": true,
"ssl3": false,
"max_send_fragment": 1400,
"allow_half_open": false,
"npn": ["http/1.1", "http/1.0"],
"ciphers": ["TLS_DHE_RSA_WITH_AES_256_CBC_SHA"],
"ecdh": "prime256v1",
"cert": "keys/cert.pem",
"key": "keys/key.pem",
"passphrase": null,
"ticket_key": null,
"request_cert": false,
"ca": null,
"reneg_window": 600,
"reneg_limit": 3
},
"balance": "roundrobin",
"backend": [{
"port": 8000,
"host": "127.0.0.1",
"keepalive": 3600,
"proxyline": false,
"x-forward": true
}],
"sni": {
"enabled": false,
"port": 9000,
"host": "127.0.0.1",
"url": "/bud/sni/%s"
},
"stapling": {
"enabled": false,
"port": 9000,
"host": "127.0.0.1",
"url": "/bud/stapling/%s"
},
"contexts": []
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment