mirror of
https://github.com/certbot/certbot.git
synced 2026-06-04 22:33:00 -04:00
* Cache the vhost we find during nginx deployment for OCSP enhancement. * Refactor to pass domain into enhancement functions * Add https redirect to most name-matching block listening non-sslishly. * Redirect enhancement chooses the vhost most closely matching target_name that is listening to port 80 without using ssl. * Add default listen 80 directive when it is implicitly defined
19 lines
383 B
Text
19 lines
383 B
Text
server {
|
|
server_name migration.com;
|
|
server_name summer.com;
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl;
|
|
server_name migration.com;
|
|
server_name geese.com;
|
|
|
|
ssl_certificate cert.pem;
|
|
ssl_certificate_key cert.key;
|
|
|
|
ssl_session_cache shared:SSL:1m;
|
|
ssl_session_timeout 5m;
|
|
|
|
ssl_ciphers HIGH:!aNULL:!MD5;
|
|
ssl_prefer_server_ciphers on;
|
|
}
|