aboutsummaryrefslogtreecommitdiff
path: root/ci/container/config-templates
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2024-03-13 16:17:58 -0400
committerLibravatar vnugent <public@vaughnnugent.com>2024-03-13 16:17:58 -0400
commit1e08c6d2112459dc02a0ab873123c4a363b01d21 (patch)
treec6ed7dfefd5b9c8965cfc185ad3f89436301df1a /ci/container/config-templates
parent85a1e5b7cc5c99e97a2d4e99bbceb0d2139742ff (diff)
ci: verified container build ready for next release
Diffstat (limited to 'ci/container/config-templates')
-rw-r--r--ci/container/config-templates/SimpleBookmark-template.json15
1 files changed, 15 insertions, 0 deletions
diff --git a/ci/container/config-templates/SimpleBookmark-template.json b/ci/container/config-templates/SimpleBookmark-template.json
index a64a10a..c2bf780 100644
--- a/ci/container/config-templates/SimpleBookmark-template.json
+++ b/ci/container/config-templates/SimpleBookmark-template.json
@@ -14,6 +14,21 @@
}
},
+ //System website lookup endpoint (aka curl)
+ "curl": {
+ "path": "/api/lookup",
+ "exe_path": "curl", //Path to the curl executable
+ "extra_args": [
+ "--globoff", //Disables unsafe url globbing
+ "--no-keepalive", //Disables keepalive, uneeded for a single lookup request
+ "--max-filesize",
+ "100K", //Max file size 100K
+ "--max-redirs",
+ "5", //Max redirects 5
+ "--location", //Follow redirects
+ ]
+ },
+
"registration": {
"path": "/api/register", //Path for the registration endpoint
"token_lifetime_mins": ${REG_TOKEN_DURATION_MIN}, //Token lifetime in minutes