Add deployment traces for the JPpro proxy node, RackNerd origin hosts, catproxy boundary changes, local speed checks, and Sub2API rate-limit behavior. Keep remote secrets excluded while tracking sanitized nginx, compose, plan, and operational memory documents.
39 lines
819 B
Plaintext
39 lines
819 B
Plaintext
server {
|
|
listen 80 default_server;
|
|
listen [::]:80 default_server;
|
|
server_name _;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/html;
|
|
default_type text/plain;
|
|
}
|
|
|
|
location / {
|
|
return 444;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 80;
|
|
listen [::]:80;
|
|
server_name origin.proxy.api.lilifamily.com catproxy.lilifamily.com;
|
|
|
|
location ^~ /.well-known/acme-challenge/ {
|
|
root /var/www/html;
|
|
default_type text/plain;
|
|
}
|
|
|
|
location / {
|
|
return 444;
|
|
}
|
|
}
|
|
|
|
server {
|
|
listen 443 ssl default_server;
|
|
listen [::]:443 ssl default_server;
|
|
server_name _;
|
|
ssl_certificate /etc/letsencrypt/live/catproxy.lilifamily.com/fullchain.pem;
|
|
ssl_certificate_key /etc/letsencrypt/live/catproxy.lilifamily.com/privkey.pem;
|
|
return 444;
|
|
}
|