Update .env
This commit is contained in:
parent
2b7be272f5
commit
3ad8cc3fe0
1 changed files with 13 additions and 14 deletions
23
.env
23
.env
|
|
@ -1,5 +1,5 @@
|
|||
##################################
|
||||
# API CONFIGURATION
|
||||
# API CONFIGURATION #
|
||||
##################################
|
||||
|
||||
# Set the port for receiving connections
|
||||
|
|
@ -7,9 +7,9 @@ PORT=3000
|
|||
AUTH_PORT=8070
|
||||
BILLING_PORT=8080
|
||||
|
||||
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 false, the helmet middleware is not included in the middleware stack, and the application's responses will not have these extra headers.
|
||||
# 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 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
|
||||
|
||||
# Set the server timezone
|
||||
|
|
@ -42,7 +42,7 @@ DB_USER=sa
|
|||
# Set the password to connect to database
|
||||
DB_PASSWORD=
|
||||
|
||||
Set to encrypt the connection to the database
|
||||
# Set to encrypt the connection to the database
|
||||
DB_ENCRYPT=false
|
||||
|
||||
##################################
|
||||
|
|
@ -58,26 +58,25 @@ GATESERVER_PORT=50001
|
|||
##################################
|
||||
# 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.
|
||||
# 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
|
||||
|
||||
The hostname or IP address of the SMTP server
|
||||
# The hostname or IP address of the SMTP server
|
||||
SMTP_HOST=smtp.gmail.com
|
||||
|
||||
The port number of the SMTP server
|
||||
# The port number of the SMTP server
|
||||
SMTP_PORT=465
|
||||
|
||||
The encryption protocol to use (e.g. ssl, tls)
|
||||
# The encryption protocol to use (e.g. ssl, tls)
|
||||
SMTP_ENCRYPTION=ssl
|
||||
|
||||
# your gmail
|
||||
# your email
|
||||
SMTP_USERNAME=your.email@gmail.com
|
||||
|
||||
# app 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
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue