revert: remove standalone domains we don't own
Reverts Traefik rules and removes standaloneDomain from rdesign, rvnb, rbnb, rdocs, and crowdsurf — we don't have these domains. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
d315375a93
commit
8b61203e17
|
|
@ -168,26 +168,6 @@ services:
|
|||
- "traefik.http.routers.rspace-rsocials.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-rsocials.priority=120"
|
||||
- "traefik.http.routers.rspace-rsocials.service=rspace-online"
|
||||
- "traefik.http.routers.rspace-rdesign.rule=Host(`rdesign.online`) || HostRegexp(`{sub:[a-z0-9-]+}.rdesign.online`)"
|
||||
- "traefik.http.routers.rspace-rdesign.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-rdesign.priority=120"
|
||||
- "traefik.http.routers.rspace-rdesign.service=rspace-online"
|
||||
- "traefik.http.routers.rspace-rvnb.rule=Host(`rvnb.online`) || HostRegexp(`{sub:[a-z0-9-]+}.rvnb.online`)"
|
||||
- "traefik.http.routers.rspace-rvnb.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-rvnb.priority=120"
|
||||
- "traefik.http.routers.rspace-rvnb.service=rspace-online"
|
||||
- "traefik.http.routers.rspace-rbnb.rule=Host(`rbnb.online`) || HostRegexp(`{sub:[a-z0-9-]+}.rbnb.online`)"
|
||||
- "traefik.http.routers.rspace-rbnb.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-rbnb.priority=120"
|
||||
- "traefik.http.routers.rspace-rbnb.service=rspace-online"
|
||||
- "traefik.http.routers.rspace-rdocs.rule=Host(`rdocs.online`) || HostRegexp(`{sub:[a-z0-9-]+}.rdocs.online`)"
|
||||
- "traefik.http.routers.rspace-rdocs.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-rdocs.priority=120"
|
||||
- "traefik.http.routers.rspace-rdocs.service=rspace-online"
|
||||
- "traefik.http.routers.rspace-crowdsurf.rule=Host(`crowdsurf.online`) || HostRegexp(`{sub:[a-z0-9-]+}.crowdsurf.online`)"
|
||||
- "traefik.http.routers.rspace-crowdsurf.entrypoints=web"
|
||||
- "traefik.http.routers.rspace-crowdsurf.priority=120"
|
||||
- "traefik.http.routers.rspace-crowdsurf.service=rspace-online"
|
||||
# Service configuration
|
||||
- "traefik.http.services.rspace-online.loadbalancer.server.port=3000"
|
||||
- "traefik.docker.network=traefik-public"
|
||||
|
|
|
|||
|
|
@ -199,7 +199,6 @@ export const crowdsurfModule: RSpaceModule = {
|
|||
scoping: { defaultScope: 'space', userConfigurable: false },
|
||||
routes,
|
||||
hidden: true, // CrowdSurf is now a sub-tab of rChoices
|
||||
standaloneDomain: "crowdsurf.online",
|
||||
landingPage: renderLanding,
|
||||
seedTemplate: seedTemplateCrowdSurf,
|
||||
feeds: [
|
||||
|
|
|
|||
|
|
@ -1214,7 +1214,6 @@ export const bnbModule: RSpaceModule = {
|
|||
scoping: { defaultScope: 'space', userConfigurable: true },
|
||||
docSchemas: [{ pattern: '{space}:bnb:listings', description: 'Listings, stays, endorsements', init: bnbSchema.init }],
|
||||
routes,
|
||||
standaloneDomain: "rbnb.online",
|
||||
landingPage: renderLanding,
|
||||
seedTemplate: seedDemoIfEmpty,
|
||||
async onInit(ctx) {
|
||||
|
|
|
|||
|
|
@ -66,7 +66,6 @@ export const designModule: RSpaceModule = {
|
|||
scoping: { defaultScope: 'global', userConfigurable: false },
|
||||
routes,
|
||||
landingPage: renderDesignLanding,
|
||||
standaloneDomain: "rdesign.online",
|
||||
externalApp: { url: AFFINE_URL, name: "Affine" },
|
||||
feeds: [
|
||||
{ id: "design-assets", name: "Design Assets", kind: "resource", description: "Design files, mockups, and whiteboard exports" },
|
||||
|
|
|
|||
|
|
@ -66,7 +66,6 @@ export const docsModule: RSpaceModule = {
|
|||
scoping: { defaultScope: 'global', userConfigurable: true },
|
||||
routes,
|
||||
landingPage: renderDocsLanding,
|
||||
standaloneDomain: "rdocs.online",
|
||||
externalApp: { url: DOCMOST_URL, name: "Docmost" },
|
||||
feeds: [
|
||||
{ id: "documents", name: "Documents", kind: "data", description: "Collaborative documents and wiki pages" },
|
||||
|
|
|
|||
|
|
@ -1295,7 +1295,6 @@ export const vnbModule: RSpaceModule = {
|
|||
scoping: { defaultScope: 'space', userConfigurable: true },
|
||||
docSchemas: [{ pattern: '{space}:vnb:vehicles', description: 'Vehicles, rentals, endorsements', init: vnbSchema.init }],
|
||||
routes,
|
||||
standaloneDomain: "rvnb.online",
|
||||
landingPage: renderLanding,
|
||||
seedTemplate: seedDemoIfEmpty,
|
||||
async onInit(ctx) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue