34 lines
850 B
Plaintext
34 lines
850 B
Plaintext
# Linux deployment example
|
|
# Copy this file to config/server.conf and adjust the database credentials and paths.
|
|
server.host=0.0.0.0
|
|
server.port=8651
|
|
server.trust_proxy=false
|
|
server.proxy_header=x-forwarded-for
|
|
|
|
jwt.secret=change-me
|
|
jwt.expiration_seconds=7200
|
|
|
|
logging.level=info
|
|
logging.http_summary=true
|
|
logging.http_dump=false
|
|
logging.http_max_body=2048
|
|
|
|
features.video_enabled=false
|
|
features.payment_enabled=false
|
|
|
|
database.host=127.0.0.1
|
|
database.port=3306
|
|
database.name=rindro
|
|
database.user=root
|
|
database.password=change-me
|
|
database.ssl_mode=preferred
|
|
database.ssl_ca=
|
|
database.plugin_dir=
|
|
|
|
paths.configfile=/root/rindro/Script/FileConfig.json
|
|
paths.file_root=/root/rindro/
|
|
paths.file_map=/root/rindro/file.json
|
|
paths.script_root=/root/rindro/ClentScript/
|
|
paths.dps_root=/home/DP_S/
|
|
paths.client_user_script_root=/root/rindro/ClentUserScript/
|