This commit is contained in:
2026-04-15 15:19:28 +08:00
commit 03229f23d4
159 changed files with 12538 additions and 0 deletions

34
config/server.conf Normal file
View File

@@ -0,0 +1,34 @@
# Windows local test configuration
# Fill in the database settings and adjust all paths to match your machine.
server.host=0.0.0.0
server.port=65170
jwt.secret=rjyusrghdfghj2345ryu123asdfvbyukuirtwjhfsd
jwt.expiration_seconds=7200
logging.level=debug
logging.http_summary=true
logging.http_dump=true
logging.http_max_body=2048
# Keep these disabled for the first Windows test pass.
features.video_enabled=false
features.payment_enabled=false
# MySQL test database
database.host=192.168.200.179
database.port=3306
database.name=rindro
database.user=root
database.password=Djq5231520!
database.ssl_mode=disable
database.ssl_ca=
database.plugin_dir=
# Main legacy-compatible Windows test paths
paths.configfile=H:\\DpsTest\\rindro\\Script\\FileConfig.json
paths.file_root=H:\\DpsTest\\rindro\\
paths.file_map=H:\\DpsTest\\rindro\\file.json
paths.script_root=H:\\DpsTest\\rindro\\ClentScript\\
paths.dps_root=H:\\DpsTest\\DP_S\\
paths.client_user_script_root=H:\\DpsTest\\rindro\\ClentUserScript\\

View File

@@ -0,0 +1,33 @@
# 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/

View File

@@ -0,0 +1,33 @@
# Windows local test example for MSVC builds
# 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=debug
logging.http_summary=true
logging.http_dump=true
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=disable
database.ssl_ca=
database.plugin_dir=
paths.configfile=D:\\DpsTest\\rindro\\Script\\FileConfig.json
paths.file_root=D:\\DpsTest\\rindro\\
paths.file_map=D:\\DpsTest\\rindro\\file.json
paths.script_root=D:\\DpsTest\\rindro\\ClentScript\\
paths.dps_root=D:\\DpsTest\\DP_S\\
paths.client_user_script_root=D:\\DpsTest\\rindro\\ClentUserScript\\