18 lines
442 B
Plaintext
18 lines
442 B
Plaintext
|
################################################################################
|
||
|
# Environment Configuration
|
||
|
################################################################################
|
||
|
|
||
|
NODE_ENV=development
|
||
|
HOST=localhost
|
||
|
|
||
|
# Enable/disable protocols
|
||
|
HTTP=true
|
||
|
HTTPS=false
|
||
|
|
||
|
# Server ports
|
||
|
HTTP_PORT=8000
|
||
|
HTTPS_PORT=3443
|
||
|
|
||
|
# Certificate paths are relative to the server.js file
|
||
|
HTTPS_CONFIG_KEY=localhost.key
|
||
|
HTTPS_CONFIG_CERT=localhost.crt
|