1
0
mirror of https://github.com/spacebarchat/server.git synced 2024-11-09 20:22:47 +01:00

Don't set default cdn endpoints. Null endpoints means to not update them in GLOBAL_ENV. TODO: Don't use private endpoint locations in global env if public is not set, as this limits infra config

This commit is contained in:
Madeline 2023-01-26 01:10:05 +11:00
parent a94c799e70
commit b82c6d672b
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -23,6 +23,6 @@ export class CdnConfiguration extends EndpointConfiguration {
resizeWidthMax: number = 1000;
imagorServerUrl: string | null = null;
endpointPublic: string | null = "http://localhost:3001";
endpointPrivate: string | null = "http://localhost:3001";
endpointPublic: string | null = null;
endpointPrivate: string | null = null;
}