|
@@ -7,6 +7,7 @@ import logger from "@server/logger";
|
|
|
export async function copyInConfig() {
|
|
|
const domain = config.getBaseDomain();
|
|
|
const endpoint = config.getRawConfig().gerbil.base_endpoint;
|
|
|
+ const listenPort = config.getRawConfig().gerbil.start_port;
|
|
|
|
|
|
// update the domain on all of the orgs where the domain is not equal to the new domain
|
|
|
// TODO: eventually each org could have a unique domain that we do not want to overwrite, so this will be unnecessary
|
|
@@ -14,6 +15,8 @@ export async function copyInConfig() {
|
|
|
|
|
|
// TODO: eventually each exit node could have a different endpoint
|
|
|
await db.update(exitNodes).set({ endpoint }).where(ne(exitNodes.endpoint, endpoint));
|
|
|
+ // TODO: eventually each exit node could have a different port
|
|
|
+ await db.update(exitNodes).set({ listenPort }).where(ne(exitNodes.listenPort, listenPort));
|
|
|
|
|
|
// update all resources fullDomain to use the new domain
|
|
|
await db.transaction(async (trx) => {
|