1
0
mirror of https://github.com/mattermost/focalboard.git synced 2024-11-24 08:22:29 +02:00

server-config.json

This commit is contained in:
Chen-I Lim 2021-01-28 10:29:57 -08:00
parent 9de0a3b2b7
commit a4a86a4c18
2 changed files with 17 additions and 1 deletions

View File

@ -48,7 +48,7 @@ server-linux-package: server-linux webapp
mkdir -p package/${PACKAGE_FOLDER}/bin mkdir -p package/${PACKAGE_FOLDER}/bin
cp bin/linux/octoserver package/${PACKAGE_FOLDER}/bin cp bin/linux/octoserver package/${PACKAGE_FOLDER}/bin
cp -R webapp/pack package/${PACKAGE_FOLDER}/pack cp -R webapp/pack package/${PACKAGE_FOLDER}/pack
cp config.json package/${PACKAGE_FOLDER} cp server-config.json package/${PACKAGE_FOLDER}/config.json
cp build/MIT-COMPILED-LICENSE.md package/${PACKAGE_FOLDER} cp build/MIT-COMPILED-LICENSE.md package/${PACKAGE_FOLDER}
cp NOTICE.txt package/${PACKAGE_FOLDER} cp NOTICE.txt package/${PACKAGE_FOLDER}
cp webapp/NOTICE.txt package/${PACKAGE_FOLDER}/webapp-NOTICE.txt cp webapp/NOTICE.txt package/${PACKAGE_FOLDER}/webapp-NOTICE.txt

16
server-config.json Normal file
View File

@ -0,0 +1,16 @@
{
"serverRoot": "http://localhost:8000",
"port": 8000,
"dbtype": "sqlite3",
"dbconfig": "./focalboard.db",
"postgres_dbconfig": "dbname=focalboard sslmode=disable",
"useSSL": false,
"webpath": "./pack",
"filespath": "./files",
"telemetry": true,
"session_expire_time": 2592000,
"session_refresh_time": 18000,
"localOnly": false,
"enableLocalMode": true,
"localModeSocketLocation": "/var/tmp/octo_local.socket"
}