diff options
Diffstat (limited to 'vars')
| -rw-r--r-- | vars | 14 |
1 files changed, 14 insertions, 0 deletions
@@ -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" |
