mirror of
https://github.com/spacebarchat/server.git
synced 2024-11-22 10:22:39 +01:00
also don't use 3002 as default when gateway endpoints are null
This commit is contained in:
parent
08560d8655
commit
38c85e6c4f
@ -44,7 +44,7 @@ const options: RouteOptions = {
|
||||
router.get("/", route(options), (req: Request, res: Response) => {
|
||||
const { endpointPublic } = Config.get().gateway;
|
||||
res.json({
|
||||
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002",
|
||||
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
|
||||
shards: 1,
|
||||
session_start_limit: {
|
||||
total: 1000,
|
||||
|
@ -37,7 +37,7 @@ const options: RouteOptions = {
|
||||
router.get("/", route(options), (req: Request, res: Response) => {
|
||||
const { endpointPublic } = Config.get().gateway;
|
||||
res.json({
|
||||
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3002",
|
||||
url: endpointPublic || process.env.GATEWAY || "ws://localhost:3001",
|
||||
});
|
||||
});
|
||||
|
||||
|
@ -29,7 +29,7 @@ router.get("/", route({}), async (req: Request, res: Response) => {
|
||||
gateway:
|
||||
gateway.endpointPublic ||
|
||||
process.env.GATEWAY ||
|
||||
"ws://localhost:3002",
|
||||
"ws://localhost:3001",
|
||||
defaultApiVersion: api.defaultVersion ?? 9,
|
||||
apiEndpoint: api.endpointPublic ?? "/api",
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user