certbot/certbot-nginx/certbot_nginx/tests/testdata/etc_nginx/sites-enabled/default
ohemorange bdaccb645b
Support quoted server names in Nginx (#5811)
* Support quoted server names in Nginx

* add unit test to check that we strip quotes

* update configurator test
2018-04-03 12:14:23 -07:00

10 lines
211 B
Text

server {
listen myhost default_server;
listen otherhost default_server;
server_name "www.example.org";
location / {
root html;
index index.html index.htm;
}
}