2024-11-04 11:09:00 -06:00
|
|
|
server {
|
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
server_name theshadoweevee.konpeki.solutions www.theshadoweevee.konpeki.solutions;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
|
|
|
ssl_certificate /etc/letsencrypt/live/konpeki.solutions/fullchain.pem;
|
|
|
|
ssl_certificate_key /etc/letsencrypt/live/konpeki.solutions/privkey.pem;
|
2024-11-04 13:52:16 -06:00
|
|
|
ssl_trusted_certificate /etc/letsencrypt/live/konpeki.solutions/fullchain.pem;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/global/common-ssl.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/proxy/common-proxy-headers.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
|
|
|
location / {
|
|
|
|
rewrite / https://bsky.app/profile/did:plc:krbzbucjaj76xjob6ju47ilo break;
|
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /xrpc {
|
|
|
|
proxy_pass http://bsky;
|
|
|
|
}
|
|
|
|
|
|
|
|
location = /.well-known/atproto-did {
|
|
|
|
root /var/www/bsky/theshadoweevee/;
|
|
|
|
default_type text/plain;
|
|
|
|
}
|
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/global/errors/http-cat-error-pages.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
}
|