mirror of
https://github.com/bensuperpc/infrastructure.git
synced 2024-11-10 04:07:26 +01:00
17 lines
388 B
Plaintext
17 lines
388 B
Plaintext
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
#listen 443;
|
|
#listen [::]:443;
|
|
server_name test.bensuperpc.org www.test.bensuperpc.org;
|
|
|
|
location ~ /.well-known/acme-challenge {
|
|
allow all;
|
|
root /var/www/html;
|
|
}
|
|
|
|
location / {
|
|
return 301 https://www.bensuperpc.org$request_uri;
|
|
}
|
|
}
|