forked from ryancbutler/ns-letsencrypt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mynsconfig.py.example
32 lines (26 loc) · 1020 Bytes
/
mynsconfig.py.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
nitroNSIP = "192.168.2.54"
nitroUser = "nsroot"
nitroPass = "nsroot"
#don't delete passplain. It is random and is only used as a dummy passphrase when creating the server certificate (NetScaler requires a passphrase for pem files)
passplain = "#S0m3C0mpl3xPassw0rd123#"
#Use HTTP or HTTPs to connect to Netscaler
connectiontype = "https"
#Certificate and private key file names on Netscaler
#Pair Name Prefix (le-certificate-mydomain)
nspairname = "le-"
#File Name Prefix (le-cert-myhostname.domain.com.pem)
nscert = "le-cert"
nskey = "le-privkey"
#CA name and filename
nschainname = "le-chain"
nschain = "le-chain.pem"
nscertpath = "/nsconfig/ssl/"
#Responder Policy prefix information for temporary policy (le-responder-act-mydomain.domain.com)
nsrespact = "le-responder-act"
nsresppol = "le-responder-pol"
#Number to start creating policy priorities. Each domain challenged will increase by one.
polpristart = 10
#HTTP Content switch or LB vserver name
nsvip = "csw-http"
#VIP type (csw or LB)
viptype = "csw"