1 files changed, 4 insertions, 1 deletions
diff --git a/src/Server.ts b/src/Server.ts
index aa66b5b6..49bb2398 100644
--- a/src/Server.ts
+++ b/src/Server.ts
@@ -165,7 +165,10 @@ export class FosscordServer extends Server {
/CDN_HOST: ".+"/,
`CDN_HOST: "${(Config.get().cdn.endpoint || "http://localhost:3003").replace(/https?:/, "")}"`
)
- .replace(/GATEWAY_ENDPOINT: ".+"/, `GATEWAY_ENDPOINT: "${Config.get().gateway.endpoint || "ws://localhost:3002"}"`)
+ .replace(
+ /GATEWAY_ENDPOINT: ".+"/,
+ `GATEWAY_ENDPOINT: "${Config.get().gateway.endpoint || process.env.GATEWAY || "ws://localhost:3002"}"`
+ )
);
});
return super.start();
|