fix: correct "bugs" to "issues" in routing table and README references across multiple documentation files
This commit is contained in:
@@ -44,6 +44,14 @@ SESSION_MAX_AGE_REMEMBER = SECONDS_PER_DAY * 30
|
||||
PORT = 10500
|
||||
SITE_URL = environ.get("DEVPLACE_SITE_URL", "").rstrip("/")
|
||||
|
||||
# Forking XML-RPC bridge. A standalone ForkingMixIn XML-RPC server binds this
|
||||
# port on loopback and translates every documented REST endpoint into an XML-RPC
|
||||
# method (generated from docs_api.API_GROUPS). The FastAPI app reverse-proxies
|
||||
# /xmlrpc to it; nginx forwards /xmlrpc in production. The bind host stays
|
||||
# loopback because the app and nginx are the only intended front doors.
|
||||
XMLRPC_BIND = environ.get("DEVPLACE_XMLRPC_BIND", "127.0.0.1")
|
||||
XMLRPC_PORT = int(environ.get("DEVPLACE_XMLRPC_PORT", "10550"))
|
||||
|
||||
# Cache-busting version stamped onto every app-owned static URL. Computed once at
|
||||
# process start, so a restart/deploy changes it and busts every browser cache while
|
||||
# assets stay heavily cached (immutable, 1 year) between deploys. Set
|
||||
|
||||
Reference in New Issue
Block a user