1
0
mirror of https://github.com/lukevella/rallly-selfhosted.git synced 2025-12-10 02:42:49 +01:00

Add SMTP_SECURE to env file and update README

This commit is contained in:
Luke Vella 2023-02-07 17:56:15 +00:00
parent 076b42ebb8
commit 91d7b58637
2 changed files with 7 additions and 1 deletions

View File

@ -31,7 +31,12 @@ In the root of this project you will find a file called `config.env`. Open this
- Set `SUPPORT_EMAIL` - This will appear as the support email in emails sent out by your instance. - Set `SUPPORT_EMAIL` - This will appear as the support email in emails sent out by your instance.
- Configure `SMTP_HOST`, `SMTP_PORT`, `SMTP_USER` and `SMTP_PWD` with the details of your SMTP server. - Configure your SMTP server
- `SMTP_HOST` - The host address of your SMTP server
- `SMTP_PORT` - The port of your SMTP server
- `SMTP_SECURE` - Set to "true" if SSL is enabled for your SMTP connection
- `SMTP_USER` - The username (if auth is enabled)
- `SMTP_PWD` - The password (if auth is enabled)
### Start the server ### Start the server

View File

@ -3,5 +3,6 @@ NEXT_PUBLIC_BASE_URL=replace-me
SUPPORT_EMAIL=replace-me SUPPORT_EMAIL=replace-me
SMTP_HOST=replace-me SMTP_HOST=replace-me
SMTP_PORT=replace-me SMTP_PORT=replace-me
SMTP_SECURE=false
SMTP_USER=replace-me SMTP_USER=replace-me
SMTP_PWD=replace-me SMTP_PWD=replace-me