blob: 319fbaa0230d3b603a1c4c94dfae4f556aba885f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# What tmux session are we going to use for this?
tmux_session="rshsh"
# Server's hostname
hostname="changeme.example.com"
# 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"
|