2024-11-04 13:52:16 -06:00
|
|
|
# Include a common header (Upgrade Websockets, Add Upstreams, Upgrade HTTP to HTTPS)
|
|
|
|
include snippets/global/common-boilerplate.conf;
|
2024-11-04 11:09:00 -06:00
|
|
|
|
|
|
|
server {
|
|
|
|
|
|
|
|
server_name konpeki.solutions www.konpeki.solutions;
|
|
|
|
|
|
|
|
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 / {
|
|
|
|
client_max_body_size 512M;
|
|
|
|
#proxy_pass http://100.64.4.102;
|
|
|
|
return 404;
|
|
|
|
}
|
|
|
|
|
|
|
|
location /xrpc {
|
|
|
|
proxy_pass http://bsky;
|
|
|
|
}
|
|
|
|
|
2024-11-04 13:52:16 -06:00
|
|
|
include snippets/global/errors/http-cat-error-pages.conf;
|
|
|
|
}
|