Skip to content

Commit

Permalink
(fix) nginx - ssl on is deprecated since version 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
Soifou committed Jul 18, 2018
1 parent 03dc1fb commit 05b1bbe
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion nginx/snippets/ssl.conf
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
ssl on;
# The ssl on syntax is deprecated since nginx 1.15. We should only add it if we use nginx 1.14 or older.
# ssl on;
ssl_ciphers HIGH:!aNULL:!eNULL:!EXPORT:!CAMELLIA:!DES:!MD5:!PSK:!RC4;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache builtin:1000 shared:SSL:10m;
Expand Down

0 comments on commit 05b1bbe

Please sign in to comment.