fix: correct "bugs" to "issues" in routing table and README references across multiple documentation files

This commit is contained in:
2026-06-14 07:48:10 +00:00
parent f79a427f32
commit f2b910ea75
162 changed files with 7011 additions and 1134 deletions
+15
View File
@@ -108,6 +108,21 @@ server {
proxy_send_timeout 3600s;
}
# XML-RPC bridge (/xmlrpc): forwards XML-RPC method calls to the app, which
# reverse-proxies them to the forking XML-RPC server. Long timeouts because a
# single multicall can fan out into many internal REST calls.
location /xmlrpc {
proxy_pass http://app;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_read_timeout 120s;
proxy_send_timeout 120s;
}
location / {
proxy_pass http://app;
proxy_set_header Host $host;