blob: 030673677f6b864a1c2818e2c537ed40cf416d68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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;
}
}
|