generated from nhcarrigan/template
14 lines
379 B
Plaintext
14 lines
379 B
Plaintext
# Naomi QR code generator.
|
|
server {
|
|
listen 443 ssl;
|
|
server_name qr.nhcarrigan.com;
|
|
ssl_certificate /etc/letsencrypt/live/qr.nhcarrigan.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/qr.nhcarrigan.com/privkey.pem;
|
|
|
|
location / {
|
|
proxy_set_header Host $host;
|
|
proxy_pass http://127.0.0.1:15555;
|
|
}
|
|
include /etc/nginx/snippets/deny-dotfiles.conf;
|
|
}
|