Modify `default` config.

This commit is contained in:
Kazuhiro MUSASHI 2023-06-03 10:19:53 +09:00
parent 9add9907d2
commit 33cd329706
1 changed files with 5 additions and 3 deletions

View File

@ -1,9 +1,11 @@
# Denies the access without the pre-defined virtual host. # Denies the access without the pre-defined virtual host.
server { server {
listen 80 default_server; listen 80 default_server;
listen 443 ssl default_server;
server_name _; server_name _;
location / { ssl_certificate /etc/lego/.lego/certificates/_.kazu634.com.crt;
ssl_certificate_key /etc/lego/.lego/certificates/_.kazu634.com.key;
return 444; return 444;
}
} }