Add missing access_log statement to HTTPS fallback
This commit is contained in:
parent
3f223abeb8
commit
6b5e12a946
1 changed files with 1 additions and 0 deletions
|
@ -62,6 +62,7 @@ server {
|
||||||
server {
|
server {
|
||||||
server_name _; # This is just an invalid value which will never trigger on a real hostname.
|
server_name _; # This is just an invalid value which will never trigger on a real hostname.
|
||||||
listen 443 ssl http2;
|
listen 443 ssl http2;
|
||||||
|
access_log /var/log/nginx/access.log vhost;
|
||||||
return 503;
|
return 503;
|
||||||
|
|
||||||
ssl_certificate /etc/nginx/certs/default.crt;
|
ssl_certificate /etc/nginx/certs/default.crt;
|
||||||
|
|
Reference in a new issue