50 lines
1.8 KiB
Bash
50 lines
1.8 KiB
Bash
#Email verification=Changes if users have to verify their email after registration.
|
|
#=Register_auth either auth or verified. If auth is selected, no verification is required. Default is verified.
|
|
Register_auth=verified
|
|
|
|
#App Settings=Changes settings regarding your LittleLink Custom installation. You probably only want to change the App Name setting.
|
|
#=App_Name changes the displayed name for the App in the title, for example.
|
|
App_Name="LittleLink Custom"
|
|
APP_KEY=
|
|
App_URL=
|
|
|
|
|
|
#Debug Settings=Changes if your page should display a full error description instead of a generic error 500
|
|
#=App_debug either true or false. You might want to change this to false after you're done installing, but it's very useful for troubleshooting.
|
|
App_debug=true
|
|
#=App_env either local or production. Change this to production if you set the value above to false
|
|
App_env=local
|
|
Log_channel=stack
|
|
Log_level=debug
|
|
|
|
|
|
#Database Settings=Should be left alone. If you wish to use mysql you'd have to seed the database again.
|
|
DB_connection=sqlite
|
|
|
|
|
|
#Mail Settings=LittleLink Custom comes with a free to use built-in SMTP server for sending mail. You can leave this setting as is, if you wish to use this service please read our terms and conditions at llc-mail.tru.io. If you do not wish to use the built-in SMTP server, change the setting below
|
|
#=Mail_mailer either smtp or built-in. Make sure to change this setting if you want to add a custom SMTP server.
|
|
Mail_mailer=built-in
|
|
Mail_host=
|
|
Mail_port=
|
|
Mail_username=
|
|
Mail_password=
|
|
Mail_encryption=
|
|
Mail_from_address=
|
|
Mail_from_name="${app_name}"
|
|
|
|
|
|
#Cache Settings=Completely optional
|
|
Memcached_host=127.0.0.1
|
|
Redis_host=127.0.0.1
|
|
Redis_password=null
|
|
Redis_port=6379
|
|
|
|
|
|
#Miscellaneous Settings=Should be left alone if you don't know what you're doing.
|
|
Broadcast_driver=log
|
|
Cache_driver=file
|
|
Queue_connection=sync
|
|
Session_driver=file
|
|
Session_lifetime=120
|