aboutsummaryrefslogtreecommitdiff
path: root/vars
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2019-02-14 20:26:09 -0500
committerMitch Riedstra <mitch@riedstra.us>2019-02-14 20:26:09 -0500
commitbd13ba3f12da9721ae9e0a81af788a3f9d9bb8f8 (patch)
treed88c28b69dd421fdbbdc6833e9590c0a28ee4c0b /vars
downloadrshsh-bd13ba3f12da9721ae9e0a81af788a3f9d9bb8f8.tar.gz
rshsh-bd13ba3f12da9721ae9e0a81af788a3f9d9bb8f8.tar.xz
Initial
Diffstat (limited to 'vars')
-rw-r--r--vars14
1 files changed, 14 insertions, 0 deletions
diff --git a/vars b/vars
new file mode 100644
index 0000000..03bb7b2
--- /dev/null
+++ b/vars
@@ -0,0 +1,14 @@
+#!/bin/sh
+
+# Server's hostname
+hostname="do.rygel.us"
+# Do we verify the server certificate?
+verify=1
+# This is used to tell the client script whether it should loop in infinity
+loop=1 # 1 on; 0 off
+timeout=5 # Amount of time in seconds to wait between loops if enabled
+# Used when generating an SSL certificate if self signed
+basename="keys/server"
+# Key name
+key="${basename}.pem"
+port="8443"