aboutsummaryrefslogtreecommitdiff
path: root/stackbin.conf.example
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-03-17 11:36:16 -0400
committerB. Stack <bgstack15@gmail.com>2022-03-17 11:36:16 -0400
commit65116e21030bc2b8ee7caeb1125c2c3a42f14575 (patch)
tree0e03b97b802e437d05321e8c43a82267d6ec55e4 /stackbin.conf.example
parentadd username support for user admin (diff)
downloadstackbin-65116e21030bc2b8ee7caeb1125c2c3a42f14575.tar.gz
stackbin-65116e21030bc2b8ee7caeb1125c2c3a42f14575.tar.bz2
stackbin-65116e21030bc2b8ee7caeb1125c2c3a42f14575.zip
v0.0.2: add curl supportdev
Diffstat (limited to 'stackbin.conf.example')
-rw-r--r--stackbin.conf.example3
1 files changed, 3 insertions, 0 deletions
diff --git a/stackbin.conf.example b/stackbin.conf.example
index 481a448..518af7c 100644
--- a/stackbin.conf.example
+++ b/stackbin.conf.example
@@ -23,3 +23,6 @@ STATIC_FOLDER = "/usr/share/stackbin/static"
# If you turn these off, the admin panel is entirely disabled.
ADMIN_USERNAME = 'admin'
ADMIN_PASSWORD = 'fluffycat10'
+
+# Because the app generates the url entirely from scratch for a curl POST, the protocol can get lost, so you can force https if you define this variable.
+CURL_RESPONSE_PROTOCOL = "https"
bgstack15