mirror of
https://github.com/certbot/certbot.git
synced 2026-06-06 15:22:38 -04:00
* Move parse_server to be a method of NginxParser * add super equal method to more correctly check addr equality in nginx should we support ipv6 in nginx in the future * add addr:normalized_tuple method * mark addresses listening sslishly due to another server block listening sslishly on that address * test turning on ssl globally * add docstring * lint and remove extra file
9 lines
144 B
Text
9 lines
144 B
Text
server {
|
|
server_name globalssl.com;
|
|
listen 4.8.2.6:57;
|
|
}
|
|
|
|
server {
|
|
server_name globalsslsetssl.com;
|
|
listen 4.8.2.6:57 ssl;
|
|
}
|