Merge pull request #146 from Cloudoki/typo

fix missing ;
This commit is contained in:
Andy Dawson 2016-06-30 15:23:58 +02:00 committed by GitHub
commit 678951333a
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;
}