Skip to content
Snippets Groups Projects
Commit 56d2a5d5 authored by Takeshi Umeda's avatar Takeshi Umeda Committed by syuilo
Browse files

Modify ssl directive to 'ssl' for listen directive (#5237)

the "ssl" directive is deprecated. 
http://nginx.org/en/docs/http/ngx_http_ssl_module.html#ssl
parent 3a17ff09
No related branches found
No related tags found
No related merge requests found
......@@ -25,10 +25,9 @@ server {
}
server {
listen 443 http2;
listen [::]:443 http2;
listen 443 ssl http2;
listen [::]:443 ssl http2;
server_name example.tld;
ssl on;
ssl_session_cache shared:ssl_session_cache:10m;
# To use Let's Encrypt certificate
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment