mirror of
https://github.com/praktimarc/kst4contest.git
synced 2026-09-12 04:05:34 +02:00
18 lines
399 B
Plaintext
18 lines
399 B
Plaintext
# Temporary HTTP-only virtual host for initial certificate provisioning.
|
|
# Replace it with stats-vhost.conf.example after Certbot has succeeded.
|
|
server {
|
|
listen 80;
|
|
server_name stats.hamradioonline.de;
|
|
|
|
access_log off;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/lib/letsencrypt;
|
|
default_type text/plain;
|
|
}
|
|
|
|
location / {
|
|
return 404;
|
|
}
|
|
}
|