diff options
author | Arnaud Venturi <github@toadjaune.eu> | 2021-06-07 10:29:54 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-07 09:29:54 +0100 |
commit | 6fa5743ea04c3838d2336bb0f268bd069f29176a (patch) | |
tree | 019e0932f0296cf5928fa8ac51449c64aafa26bf /docs | |
parent | 89a6787fdb60a3b4e7054726ebe0851128e9e16a (diff) |
Add missing IPv6 "ssl" keyword in nginx config examples (#1854)
Signed-off-by: Arnaud Venturi <git@toadjaune.eu>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/nginx/monolith-sample.conf | 2 | ||||
-rw-r--r-- | docs/nginx/polylith-sample.conf | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/nginx/monolith-sample.conf b/docs/nginx/monolith-sample.conf index 350e8348..f5461d52 100644 --- a/docs/nginx/monolith-sample.conf +++ b/docs/nginx/monolith-sample.conf @@ -1,6 +1,6 @@ server { listen 443 ssl; # IPv4 - listen [::]:443; # IPv6 + listen [::]:443 ssl; # IPv6 server_name my.hostname.com; ssl_certificate /path/to/fullchain.pem; diff --git a/docs/nginx/polylith-sample.conf b/docs/nginx/polylith-sample.conf index d0d3c98d..7e8eb4a5 100644 --- a/docs/nginx/polylith-sample.conf +++ b/docs/nginx/polylith-sample.conf @@ -1,6 +1,6 @@ server { listen 443 ssl; # IPv4 - listen [::]:443; # IPv6 + listen [::]:443 ssl; # IPv6 server_name my.hostname.com; ssl_certificate /path/to/fullchain.pem; |