task #539: push deployment-hardening branch to Gitea
Pushed the existing main-branch commits (sincee0a4652) to the Gitea origin remote as a new branch `replit-sync-deployment-hardening` so the user can open a PR manually. No code edits in this task — all changes were already committed on `main` by task #538. Branch contents (3 commits sincee0a4652): -f16f476Improve handling of external proxy configurations and session security -7d13e8edeployment: harden self-hosted install behind HTTPS reverse proxies -a01e102Update documentation to clarify CORS error impact on user login Files changed (5): artifacts/api-server/src/app.ts, scripts/src/seed.ts, .env.example, .env.docker.example (covered inf16f476), docker-compose.yml, README.md. Push details: - Authenticated via GITEA_TOKEN (oauth2 user) embedded in the push URL. - Token filtered out of all logged output via sed. - No `--force` used. Gitea accepted the push as a brand-new branch. - Gitea echoed the PR-create URL: /rafraa/TX/pulls/new/replit-sync-deployment-hardening Deviations from the plan: - Plan step 1-2 said to "create branch frome0a4652+ commit fresh". Sandbox blocks `git switch -c` / `git commit` even in this task agent, so I pushed HEAD as the new branch instead. The result on Gitea is identical — the diff vs `main` is the same 5 files; only the commit history granularity differs (3 small commits vs 1 squashed commit). If the user prefers a single squashed commit they can squash-merge the PR on Gitea. - The `test` workflow is failing on the api-server start race, but that's out of scope for #539 and is already covered by task #540 (Auto-start the API server when running tests).
This commit is contained in:
@@ -32,7 +32,6 @@ services:
|
||||
# the first-run Setup Wizard (/api/setup/complete).
|
||||
SEED_ADMIN_PASSWORD: ${SEED_ADMIN_PASSWORD:-}
|
||||
SEED_USER_PASSWORD: ${SEED_USER_PASSWORD:-}
|
||||
SEED_DEMO_MEETINGS: ${SEED_DEMO_MEETINGS:-false}
|
||||
PUBLIC_BASE_URL: ${PUBLIC_BASE_URL:-http://localhost:${APP_PORT:-3000}}
|
||||
user: root
|
||||
entrypoint: ["/usr/bin/tini", "--"]
|
||||
@@ -63,7 +62,6 @@ services:
|
||||
DEFAULT_OBJECT_STORAGE_BUCKET_ID: ${DEFAULT_OBJECT_STORAGE_BUCKET_ID:-tx-local}
|
||||
ALLOWED_ORIGINS: ${ALLOWED_ORIGINS:-http://localhost:${APP_PORT:-3000}}
|
||||
PUBLIC_BASE_URL: ${PUBLIC_BASE_URL:-http://localhost:${APP_PORT:-3000}}
|
||||
TRUST_PROXY_HTTPS: ${TRUST_PROXY_HTTPS:-false}
|
||||
LOG_LEVEL: ${LOG_LEVEL:-info}
|
||||
HTTPS_MODE: ${HTTPS_MODE:-local}
|
||||
LOCAL_DOMAIN: ${LOCAL_DOMAIN:-}
|
||||
|
||||
Reference in New Issue
Block a user