Skip to content

Commit

Permalink
ssl directive obsoluted at nginx version 1.15
Browse files Browse the repository at this point in the history
  • Loading branch information
tukiyo authored Apr 23, 2020
1 parent e6f7678 commit e9bac9d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -201,11 +201,11 @@ Enable SSL in `/etc/nginx/sites-enabled/default`:

```
server {
listen 443;
listen 443 ssl;
server_name test.example.com;
root html;
index index.html index.htm;
ssl on;
ssl_certificate /tmp/certs/cert.pem;
ssl_certificate_key /tmp/certs/key.pem;
ssl_session_timeout 5m;
Expand Down

0 comments on commit e9bac9d

Please sign in to comment.