infra/roles/webservers/files/levi/http.ntfy.simponic.hatecomputers.club.conf

14 lines
279 B
Plaintext
Raw Normal View History

2024-04-12 16:57:00 -04:00
server {
listen 80;
server_name ntfy.simponic.hatecomputers.club;
location /.well-known/acme-challenge {
root /var/www/letsencrypt;
try_files $uri $uri/ =404;
}
location / {
rewrite ^ https://ntfy.simponic.hatecomputers.club$request_uri? permanent;
}
}