[FEATURE] - PR9 : Web deploy - #1204
Merged
Merged
Conversation
pulk17
requested review from
canihavesomecoffee and
thealphadollar
as code owners
September 14, 2026 09:11
Serve the console from /app/ on the platform's own domain: nginx block, CONSOLE_URL so recovery emails point at it, and a pipeline step that builds it on the runner and ships only dist/. Also raises client_max_body_size, which nginx was capping at its 1 MB default while the API accepts 512 MB.
canihavesomecoffee
force-pushed
the
web-deploy
branch
from
September 19, 2026 18:48
ccc6740 to
8f425fe
Compare
|
canihavesomecoffee
approved these changes
Sep 19, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



[FEATURE]
In raising this pull request, I confirm the following (please check boxes):
My familiarity with the project is as follows (check one):
Serving the console from /app/ on the platform's own domain. Depends on #1203.
What's here
an nginx block serving the static build at /app/, with hashed assets cached hard and an SPA fallback
a step in the existing deploy pipeline that builds the console on the runner and ships only dist/, so the VM needs no Node toolchain
CONSOLE_URL written by install.sh, so recovery emails link to the console
web.yml, which lints, typechecks, builds and audits - and only runs when web/ changes, so it doesn't fire on backend PRs
Same origin as the API is the point: no CORS, no second certificate, and no third party in the path when someone signs in.