mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
refactor(server): telemetry ports env (#13560)
This commit is contained in:
parent
0eabb3ef80
commit
c8f672f494
6 changed files with 80 additions and 18 deletions
|
|
@ -29,6 +29,11 @@ export interface EnvData {
|
|||
thirdPartySupportUrl?: string;
|
||||
};
|
||||
|
||||
bull: {
|
||||
config: QueueOptions;
|
||||
queues: RegisterQueueOptions[];
|
||||
};
|
||||
|
||||
database: {
|
||||
url?: string;
|
||||
host: string;
|
||||
|
|
@ -45,6 +50,10 @@ export interface EnvData {
|
|||
server: string;
|
||||
};
|
||||
|
||||
network: {
|
||||
trustedProxies: string[];
|
||||
};
|
||||
|
||||
resourcePaths: {
|
||||
lockFile: string;
|
||||
geodata: {
|
||||
|
|
@ -62,9 +71,9 @@ export interface EnvData {
|
|||
|
||||
redis: RedisOptions;
|
||||
|
||||
bull: {
|
||||
config: QueueOptions;
|
||||
queues: RegisterQueueOptions[];
|
||||
telemetry: {
|
||||
apiPort: number;
|
||||
microservicesPort: number;
|
||||
};
|
||||
|
||||
storage: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue