14 lines
368 B
Plaintext
14 lines
368 B
Plaintext
|
# This file basically contains the base configuration for qrcodes.leftcoast.space
|
||
|
# This is to be installed before running certbot against it as this only sets us
|
||
|
# up for correct HTTP(not TLS) based connections
|
||
|
|
||
|
server {
|
||
|
root /var/www/qrcodes.leftcoast.space;
|
||
|
index index.html;
|
||
|
server_name qrcodes.leftcoast.space;
|
||
|
|
||
|
location / {
|
||
|
try_files $uri $uri/ =404;
|
||
|
}
|
||
|
}
|