diff options
Diffstat (limited to 'docs/reference/plugins/store')
-rw-r--r-- | docs/reference/plugins/store/centralssl.md | 13 | ||||
-rw-r--r-- | docs/reference/plugins/store/certificatestore.md | 22 | ||||
-rw-r--r-- | docs/reference/plugins/store/index.md | 23 | ||||
-rw-r--r-- | docs/reference/plugins/store/pemfiles.md | 12 |
4 files changed, 0 insertions, 70 deletions
diff --git a/docs/reference/plugins/store/centralssl.md b/docs/reference/plugins/store/centralssl.md deleted file mode 100644 index c7d2fdd..0000000 --- a/docs/reference/plugins/store/centralssl.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -sidebar: reference ---- - -# IIS Central Certificate Store (CSS) -Designed for the [Central Certificate Store](https://blogs.msdn.microsoft.com/kaushal/2012/10/11/central-certificate-store-ccs-with-iis-8-windows-server-2012/) -introduced in Windows 2012. Creates a separate copy of the `.pfx` file for each hostname and places -it in the path provided by the `--centralsslstore` parameter, or the `DefaultCentralSslStore` setting -in [settings.json](/win-acme/reference/settings). Using this store also triggers any created or -updated IIS bindings to get the `CentralSSL` flag. - -## Unattended -`--store centralssl [--centralsslstore C:\CentralSSL\] [--pfxpassword *****]`
\ No newline at end of file diff --git a/docs/reference/plugins/store/certificatestore.md b/docs/reference/plugins/store/certificatestore.md deleted file mode 100644 index 970d7af..0000000 --- a/docs/reference/plugins/store/certificatestore.md +++ /dev/null @@ -1,22 +0,0 @@ ---- -sidebar: reference ---- - -# Windows Certificate Store -Default plugin, saves certificates to the Windows Certificate store. Which store is used is based on the following priorities: - -- Store configured for the specific renewal -- Global default is configured in [settings.json](/win-acme/reference/settings) -- `WebHosting` store (if it exists, i.e. Windows 2012+ with IIS) -- The machine-level `My` store (better known as Personal) - -## Keep existing -The `--keepexisting` switch can be used to prevent the program from deleting older -versions of the certificate from the store. - -## Private key ACL -The `--acl-fullcontrol` parameter can be used to grant principals other than the -defaults for a specific store full control access to the private key. - -## Unattended -`[--store certificatestore] [--certificatestore My] [--keepexisting] [--acl-fullcontrol "network service,administrators"]`
\ No newline at end of file diff --git a/docs/reference/plugins/store/index.md b/docs/reference/plugins/store/index.md deleted file mode 100644 index 17988a1..0000000 --- a/docs/reference/plugins/store/index.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -sidebar: reference ---- - -# Store plugins -Store plugins are responsible for storing issued certificates in their permanent -location(s). The program will cache the certificate in a `.pfx` file in its -CertificatePath (which defaults to `%programdata%\win-acme\[baseuri]certificates`) but -these files are protected by random passwords to prevent local non-administrators -from obtaining keys. Store plugins are responsible for making the certificates -accessible to the application(s) that need them. - -## Multiple -More than one plugin can run by choosing them in order of execution. In interactive -mode you will be asked, for unattended mode you can provide a comma seperated list, -e.g. `--store certificatestore,pemfiles` - -## Default -The default is the [Windows Certificate Store](/win-acme/reference/plugins/store/certificatestore). - -## None -To instruct the program not to use any store, for example when your installation -script handles it, you may specify `--store none`
\ No newline at end of file diff --git a/docs/reference/plugins/store/pemfiles.md b/docs/reference/plugins/store/pemfiles.md deleted file mode 100644 index 86fbfe4..0000000 --- a/docs/reference/plugins/store/pemfiles.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -sidebar: reference ---- - -# PemFiles -Designed for [Apache](/win-acme/manual/advanced-use/examples/apache), nginx and other web servers. -Exports a `.pem` file for the certificate and private key and places them in -the path provided by the `--pemfilespath` parameter, or the `DefaultPemFilesPath` -setting in [settings.json](/win-acme/reference/settings). - -## Unattended -`--store pemfiles [--pemfilespath C:\Certificates\]`
\ No newline at end of file |