Update .env

This commit is contained in:
Junior 2023-05-17 12:35:36 -03:00 committed by GitHub
parent 2b7be272f5
commit 3ad8cc3fe0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

23
.env
View file

@ -1,5 +1,5 @@
################################## ##################################
# API CONFIGURATION # API CONFIGURATION #
################################## ##################################
# Set the port for receiving connections # Set the port for receiving connections
@ -7,9 +7,9 @@ PORT=3000
AUTH_PORT=8070 AUTH_PORT=8070
BILLING_PORT=8080 BILLING_PORT=8080
Determines whether the helmet middleware is enabled or disabled. If enabled https need to be used for the api. # Determines whether the helmet middleware is enabled or disabled. If enabled https need to be used for the api.
If set to true, the helmet middleware is included in the middleware stack, which adds various security-related HTTP headers to the application's responses to help prevent common web vulnerabilities. # If set to true, the helmet middleware is included in the middleware stack, which adds various security-related HTTP headers to the application's responses to help prevent common web vulnerabilities.
If set to false, the helmet middleware is not included in the middleware stack, and the application's responses will not have these extra headers. # If set to false, the helmet middleware is not included in the middleware stack, and the application's responses will not have these extra headers.
ENABLE_HELMET=false ENABLE_HELMET=false
# Set the server timezone # Set the server timezone
@ -42,7 +42,7 @@ DB_USER=sa
# Set the password to connect to database # Set the password to connect to database
DB_PASSWORD= DB_PASSWORD=
Set to encrypt the connection to the database # Set to encrypt the connection to the database
DB_ENCRYPT=false DB_ENCRYPT=false
################################## ##################################
@ -58,26 +58,25 @@ GATESERVER_PORT=50001
################################## ##################################
# EMAIL CONFIGURATION # # EMAIL CONFIGURATION #
################################## ##################################
using gmail smtp server # using gmail smtp server
# To generate app passwords, first you have to enable 2-Step Verification on our Google account. # To generate app passwords, first you have to enable 2-Step Verification on our Google account.
# Go to your Google account security settings (https://myaccount.google.com/security) and enable 2-Step Verification # Go to your Google account security settings (https://myaccount.google.com/security) and enable 2-Step Verification
# Now, you can select the App passwords option to set up a new app password. https://myaccount.google.com/u/2/apppasswords # Now, you can select the App passwords option to set up a new app password. https://myaccount.google.com/u/2/apppasswords
The hostname or IP address of the SMTP server # The hostname or IP address of the SMTP server
SMTP_HOST=smtp.gmail.com SMTP_HOST=smtp.gmail.com
The port number of the SMTP server # The port number of the SMTP server
SMTP_PORT=465 SMTP_PORT=465
The encryption protocol to use (e.g. ssl, tls) # The encryption protocol to use (e.g. ssl, tls)
SMTP_ENCRYPTION=ssl SMTP_ENCRYPTION=ssl
# your gmail # your email
SMTP_USERNAME=your.email@gmail.com SMTP_USERNAME=your.email@gmail.com
# app password # app password
SMTP_PASSWORD= SMTP_PASSWORD=
The name to use as the sender in emails # The name to use as the sender in emails
SMTP_FROMNAME=Rusty Hearts SMTP_FROMNAME=Rusty Hearts