1
0
mirror of https://github.com/Infisical/infisical.git synced 2025-03-31 22:09:57 +00:00

Compare commits

...

1 Commits

Author SHA1 Message Date
5ecb660cdd docs: Mention Postgres and Redis connection string formats 2024-12-13 15:11:47 -08:00

@ -39,7 +39,7 @@ Used to configure platform-specific security and operational settings
The platform utilizes Postgres to persist all of its data and Redis for caching and backgroud tasks
<ParamField query="DB_CONNECTION_URI" type="string" default="" required>
Postgres database connection string.
Postgres database connection string. The format generally looks like this: `postgresql://username:password@host:5432/database`.
</ParamField>
<ParamField query="DB_ROOT_CERT" type="string" default="" optional>
@ -49,7 +49,7 @@ The platform utilizes Postgres to persist all of its data and Redis for caching
</ParamField>
<ParamField query="REDIS_URL" type="string" default="none" required>
Redis connection string.
Redis connection string. The format generally looks like this: `redis://host:6379`.
</ParamField>
<ParamField query="DB_READ_REPLICAS" type="string" default="" optional>