From 8510caa5c6140785ab5194e9e69a643b7db24eaa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C4=83t=C4=83lin=20Mari=C8=99?= Date: Thu, 7 Aug 2014 15:01:30 +0300 Subject: [PATCH] Add missing semicolons in `ssl.example.com` Close h5bp/server-configs-nginx#52. --- sites-available/ssl.example.com | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sites-available/ssl.example.com b/sites-available/ssl.example.com index 2c8d4dc..2a88418 100644 --- a/sites-available/ssl.example.com +++ b/sites-available/ssl.example.com @@ -7,7 +7,7 @@ server { # listen on both hosts server_name example.com www.example.com; - include h5bp/direcive-only/ssl.conf + include h5bp/direcive-only/ssl.conf; # and redirect to the https host (declared below) # avoiding http://www -> https://www -> https:// chain. @@ -20,7 +20,7 @@ server { # listen on the wrong host server_name www.example.com; - include h5bp/direcive-only/ssl.conf + include h5bp/direcive-only/ssl.conf; # and redirect to the non-www host (declared below) return 301 https://example.com$request_uri; @@ -32,7 +32,7 @@ server { # The host name to respond to server_name example.com; - include h5bp/direcive-only/ssl.conf + include h5bp/direcive-only/ssl.conf; # Path for static files root /sites/example.com/public;