-
Notifications
You must be signed in to change notification settings - Fork 988
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
22 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,12 +38,15 @@ SITE_URL=http://localhost:8080 | |
|
||
# Mail/SMTP | ||
# Required to send emails | ||
# By default, SMTP_HOST is set to smtp.gmail.com | ||
# By default, SMTP_HOST is set to smtp.gmail.com, SMTP_PORT is set to 587, SMTP_TLS is set to false, and SMTP_FROM_NAME is set to Infisical | ||
SMTP_HOST=smtp.gmail.com | ||
# If STARTTLS is supported, the connection will be upgraded to TLS when SMTP_SECURE is set to false | ||
SMTP_SECURE=false | ||
SMTP_PORT=587 | ||
SMTP_NAME=Team | ||
SMTP_USERNAME=[email protected] | ||
SMTP_USERNAME= | ||
SMTP_PASSWORD= | ||
SMTP_FROM_ADDRESS= | ||
SMTP_FROM_NAME=Infisical | ||
|
||
# Integration | ||
# Optional only if integration is used | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,12 +24,15 @@ Configuring Infisical requires setting some environment variables. There is a fi | |
| `MONGO_PASSWORD` | MongoDB password if using container | `None` | | ||
| `SITE_URL` | ❗️ Site URL - should be an absolute URL including the protocol (e.g. `https://app.infisical.com`) | `None` | | ||
| `SMTP_HOST` | Hostname to connect to for establishing SMTP connections | `smtp.gmail.com` | | ||
| `SMTP_NAME` | Name label to be used in From field (e.g. `Team`) | `None` | | ||
| `SMTP_SECURE` | Use TLS when connecting to host. If false, TLS will be used if STARTTLS is supported | `false` | | ||
| `SMTP_PORT` | ❗️ Port to connect to for establishing SMTP connections | `587` | | ||
| `SMTP_FROM_ADDRESS` | ❗️ Email address to be used for sending emails (e.g. `[email protected]`) | `None` | | ||
| `SMTP_FROM_NAME` | Name label to be used in From field (e.g. `Team`) | `Infisical` | | ||
| `SMTP_USERNAME` | ❗️ Credential to connect to host (e.g. `[email protected]`) | `None` | | ||
| `SMTP_PASSWORD` | ❗️ Credential to connect to host | `None` | | ||
| `TELEMETRY_ENABLED` | `true` or `false`. [More](../overview). | `true` | | ||
| `CLIENT_ID_VERCEL` | OAuth client id for Vercel integration | `None` | | ||
| `CLIENT_ID_NETLIFY` | OAuth client id for Netlify integration | `None` | | ||
| `CLIENT_ID_VERCEL` | OAuth client id for Vercel integration | `None` | | ||
| `CLIENT_ID_NETLIFY` | OAuth client id for Netlify integration | `None` | | ||
| `CLIENT_SECRET_HEROKU` | OAuth client secret for Heroku integration | `None` | | ||
| `CLIENT_SECRET_VERCEL` | OAuth client secret for Vercel integration | `None` | | ||
| `CLIENT_SECRET_NETLIFY` | OAuth client secret for Netlify integration | `None` | | ||
|