fix missing ;

This commit is contained in:
Edgar Ribeiro 2016-06-30 13:32:40 +01:00
parent 993b807c8e
commit 60b272a2d3
1 changed files with 3 additions and 3 deletions

View File

@ -1,12 +1,12 @@
# Drop requests for unknown hosts
#
# If no default server is defined, nginx will use the first found server.
# To prevent host header attacks, or other potential problems when an unknown
# servername is used in a request, it's recommended to drop the request
# To prevent host header attacks, or other potential problems when an unknown
# servername is used in a request, it's recommended to drop the request
# returning 444 "no response".
server {
listen 443 ssl default_server;
include h5bp/directive-only/ssl.conf
include h5bp/directive-only/ssl.conf;
return 444;
}