2020-10-08 16:38:30 +00:00
|
|
|
#--------------------------------------------------------------------
|
|
|
|
# Example Environment Configuration file
|
|
|
|
#
|
|
|
|
# This file can be used as a starting point for
|
|
|
|
# your castopod instance settings.
|
|
|
|
#
|
|
|
|
# For manual configuration:
|
|
|
|
# - copy this file's contents to a file named `.env`
|
|
|
|
# - replace all the default settings with your values
|
|
|
|
# - go to `/cp-install` to complete installation
|
|
|
|
#--------------------------------------------------------------------
|
|
|
|
|
|
|
|
# Instance configuration
|
|
|
|
app.baseURL="https://YOUR_DOMAIN_NAME/"
|
2020-10-26 16:13:43 +00:00
|
|
|
app.mediaBaseURL="https://YOUR_MEDIA_DOMAIN_NAME/"
|
2020-10-08 16:38:30 +00:00
|
|
|
app.adminGateway="cp-admin"
|
|
|
|
app.authGateway="cp-auth"
|
|
|
|
|
|
|
|
# Database configuration
|
|
|
|
database.default.hostname="localhost"
|
|
|
|
database.default.database="castopod"
|
|
|
|
database.default.username="root"
|
2020-10-26 16:13:43 +00:00
|
|
|
database.default.password="****"
|
2020-10-08 16:38:30 +00:00
|
|
|
database.default.DBPrefix="cp_"
|
|
|
|
|
|
|
|
# Cache configuration (advanced)
|
|
|
|
# Keep as is if you don't know what this means
|
|
|
|
cache.handler="file"
|