diff options
Diffstat (limited to 'docs/reference/plugins/installation')
-rw-r--r-- | docs/reference/plugins/installation/iisftp.md | 2 | ||||
-rw-r--r-- | docs/reference/plugins/installation/iisweb.md | 14 | ||||
-rw-r--r-- | docs/reference/plugins/installation/script.md | 24 |
3 files changed, 20 insertions, 20 deletions
diff --git a/docs/reference/plugins/installation/iisftp.md b/docs/reference/plugins/installation/iisftp.md index 416e5fb..393179c 100644 --- a/docs/reference/plugins/installation/iisftp.md +++ b/docs/reference/plugins/installation/iisftp.md @@ -9,4 +9,4 @@ Create or update FTP site bindings in IIS, according to the following logic: - The target FTP site will be updated to use the new certificate. ## Unattended -``--installation iisftp [--installationsiteid x]`
\ No newline at end of file +`--installation iisftp [--ftpsiteid x]`
\ No newline at end of file diff --git a/docs/reference/plugins/installation/iisweb.md b/docs/reference/plugins/installation/iisweb.md index 2a04dc1..c9d2cef 100644 --- a/docs/reference/plugins/installation/iisweb.md +++ b/docs/reference/plugins/installation/iisweb.md @@ -16,14 +16,14 @@ Create or update website bindings in IIS, according to the following logic: `--sslipaddress` switches. - New bindings will be created or updated for matching host headers with the most specific match. E.g. if you generate a certificate for `a.b.c.com`, the order of preference for the binding creation/change will be: - 1. a.b.c.com - 2. *.b.c.com - 3. *.c.com - 4. *.com - 5. Default (emtpy) binding + 1. `a.b.c.com` + 2. `*.b.c.com` + 3. `*.c.com` + 4. `*.com` + 5. `*` (Default/empty binding) - If the certificate contains a wildcard domain, the order of preference will be: - 1. *.a.b.c.com - 2. x.a.b.c.com + 1. `*.a.b.c.com` + 2. `x.a.b.c.com` - In both cases, the first preferred option will be created from scratch if none of the later options are available. - In some cases the plugin will not be able to (safely) add a new binding on older versions of IIS, e.g. due to diff --git a/docs/reference/plugins/installation/script.md b/docs/reference/plugins/installation/script.md index 3274ca8..70a895a 100644 --- a/docs/reference/plugins/installation/script.md +++ b/docs/reference/plugins/installation/script.md @@ -9,17 +9,17 @@ You provide the program with the path to the script and it will run automaticall ## Parameters The following variables can be provided from the program to the script as command line arguments. -``` -{0} or {CertCommonName} - Common name (primary domain name) -{1} or {CachePassword} - The .pfx password (generated randomly for each renewal) -{2} or {CacheFile} - Full path of the cached.pfx file -{4} or {CertFriendlyName} - Friendly name of the generated certificate -{5} or {CertThumbprint} - Thumbprint of the generated certificate -{7} or {RenewalId} - Id of the renewal - -{3} or {6} or {StorePath} - Path or store name used by the store plugin -{StoreType} - Name of the plugin (CentralSsl, CertificateStore or PemFiles) -``` +| Value | Replaced with | +|----------------|----------------| +| `{0}` or `{CertCommonName}` | Common name (primary domain name) | +| `{1}` or `{CachePassword}` | The .pfx password (generated randomly for each renewal) | +| `{2}` or `{CacheFile}` | Full path of the cached.pfx file | +| `{4}` or `{CertFriendlyName}` | Friendly name of the generated certificate | +| `{5}` or `{CertThumbprint}` | Thumbprint of the generated certificate | +| `{7}` or `{RenewalId}` | Id of the renewal | +| `{3}` or `{6}` or `{StorePath}` | Path or store name used by the (first) store plugin | +| `{StoreType}` | Name of the plugin (CentralSsl, CertificateStore or PemFiles) | + ## Example If you need your scripts parameters to look something like this: @@ -40,4 +40,4 @@ If you need to put double quotes around your parameters from the command line, y For **Powershell** scripts, string parameters can also be delimited with single quotes, for example: -`--scriptparameters "action=import file='{CacheFile}' password='{CachePassword}'"` +`--scriptparameters "action=import file='{CacheFile}' password='{CachePassword}'"`
\ No newline at end of file |