From 1e08c6d2112459dc02a0ab873123c4a363b01d21 Mon Sep 17 00:00:00 2001 From: vnugent Date: Wed, 13 Mar 2024 16:17:58 -0400 Subject: ci: verified container build ready for next release --- .../config-templates/SimpleBookmark-template.json | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'ci/container/config-templates/SimpleBookmark-template.json') 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 -- cgit