aboutsummaryrefslogtreecommitdiff
path: root/ci/config/config.json
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-13 16:19:50 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-13 16:19:50 -0400
commite326736021be8ff5af4208d16f59d5e3e4f22b3e (patch)
treec6ed7dfefd5b9c8965cfc185ad3f89436301df1a /ci/config/config.json
parent3883de080e263d2f076f65b4600a5021d3d64a21 (diff)
Squashed commit of the following:v0.1.1
commit 1e08c6d2112459dc02a0ab873123c4a363b01d21 Author: vnugent <public@vaughnnugent.com> Date: Wed Mar 13 16:17:58 2024 -0400 ci: verified container build ready for next release commit 85a1e5b7cc5c99e97a2d4e99bbceb0d2139742ff Author: vnugent <public@vaughnnugent.com> Date: Tue Mar 12 22:05:16 2024 -0400 ci: exciting bare-metal build process, os support, smaller packages commit 748cdbf4880d830fd794e92856e8c35a46e4f884 Author: vnugent <public@vaughnnugent.com> Date: Mon Mar 11 21:21:18 2024 -0400 feat(app): #1 update libs & add curl support
Diffstat (limited to 'ci/config/config.json')
-rw-r--r--ci/config/config.json34
1 files changed, 17 insertions, 17 deletions
diff --git a/ci/config/config.json b/ci/config/config.json
index e4b33e8..61293b6 100644
--- a/ci/config/config.json
+++ b/ci/config/config.json
@@ -41,7 +41,7 @@
//Setup the native lib
"vnlib.net.compression": {
- "lib_path": "lib/vnlib_compress/build/<os-dependent-lib-path>",
+ "lib_path": "lib/vnlib_compress.dll",
"level": 1
},
@@ -95,16 +95,16 @@
//"cors_allowed_authority": [ "localhost:8080" ],
//Define a TLS certificate (enables TLS on the interface)
- "disabled ssl": {
+ "ssl": {
//Cert may be pem or pfx (include private key in pfx, or include private key in a pem file)
- "cert": "/path/to/cert.pfx|pem",
+ "cert": "ssl/cert.pem",
//A pem encoded private key, REQUIRED if using a PEM certificate, may be encrypted with a password
- "privkey": "/path/to/private_key.pem",
+ "privkey": "ssl/key.pem",
//An optional password for the ssl private key
- "password": "plain-text-password",
+ //"password": "plain-text-password",
//requires that any client connecting to this host present a valid certificate
"client_cert_required": false
@@ -129,29 +129,29 @@
"assets": "plugins/assets/"
},
- "disabled sys_log": {
- //"path": "path/to/syslog/file",
+ "sys_log": {
+ "path": "data/logs/syslog.txt",
//"template": "serilog template for writing to file",
- //"flush_sec": 5,
- //"retained_files": 31,
- //"file_size_limit": 10485760,
- //"interval": "infinite"
+ "flush_sec": 5,
+ "retained_files": 10,
+ "file_size_limit": 10485760,
+ "interval": "infinite"
},
"disabled app_log": {
- //"path": "path/to/applog/file",
+ "path": "data/logs/applog.txt",
//"template": "serilog template for writing to file",
- //"flush_sec": 5,
- //"retained_files": 31,
- //"file_size_limit": 10485760,
- //"interval": "infinite"
+ "flush_sec": 5,
+ "retained_files": 10,
+ "file_size_limit": 10485760,
+ "interval": "infinite"
},
//Sql for the users database
"sql": {
"debug": false,
"provider": "VNLib.Plugins.Extensions.Sql.SQLite.dll",
- "source": "simple-bookmark.db" //For sqlite only
+ "source": "data/simple-bookmark.db" //For sqlite only
},
//caching should be setup globally after VNCache #78a47dd