Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Next »

TODO: Patrick Reichel: document all parameters

1. Descriptions

SectionValueUsageNote
NMS PrimeAPP_ENV  
 APP_DEBUG  
 APP_KEY  
 APP_LOG  
    
DatabaseDB_HOST  
    

 

2. Examples

A) Easy to start

.env
# TODO: Test
APP_ENV=local
APP_DEBUG=false
APP_KEY=<key>
APP_LOG=single
APP_LOG_LEVEL=info

DB_HOST=localhost
DB_DATABASE=db_nmsprime # TODO: rename table
DB_USERNAME=root
DB_PASSWORD=<password>

CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=database

B) More complex – from a production system

.env
APP_ENV=local
APP_DEBUG=false
APP_KEY=<key>
APP_LOG=single
APP_LOG_LEVEL=info

DB_HOST=localhost
DB_DATABASE=db_nmsprime # TODO: rename table
DB_USERNAME=root
DB_PASSWORD=<password>

VOIPMONITOR_DB_HOST=<ip>
VOIPMONITOR_DB_DATABASE=voipmonitor
VOIPMONITOR_DB_USERNAME=voipmonitor
VOIPMONITOR_DB_PASSWORD=<password>

ICINGA2_DB_HOST=localhost
ICINGA2_DB_DATABASE=icinga2
ICINGA2_DB_USERNAME=icinga2user
ICINGA2_DB_PASSWORD=<password>

CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=database

MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null

CCC_DB_DATABASE=lara_customer
CCC_DB_USERNAME=<user>
CCC_DB_PASSWORD=<password>

HTTPS_ADMIN_PORT=8080
HTTPS_CCC_PORT=443
  • No labels