fix missing ;
This commit is contained in:
parent
993b807c8e
commit
60b272a2d3
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue