diff options
author | Wouter Tinus <win.acme.simple@gmail.com> | 2020-10-02 06:04:59 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-02 06:04:59 +0200 |
commit | 160ed1ad546b1a71d0d2a1557073b40983964bfe (patch) | |
tree | 1e8a1afd3ee2e75c6ee5e10306fc6df1696b1470 /docs/_includes | |
parent | c662521de225e4dd4078fc6f0c2d1adfe323e368 (diff) | |
parent | f0390cc9d8d8ffe82c4641f1e09e06d1ca9e12ae (diff) | |
download | letsencrypt-win-simple-160ed1ad546b1a71d0d2a1557073b40983964bfe.zip letsencrypt-win-simple-160ed1ad546b1a71d0d2a1557073b40983964bfe.tar.gz letsencrypt-win-simple-160ed1ad546b1a71d0d2a1557073b40983964bfe.tar.bz2 |
Merge pull request #1672 from win-acme/2.1.11v2.1.11
2.1.11
Diffstat (limited to 'docs/_includes')
-rw-r--r-- | docs/_includes/csr-common.md | 7 | ||||
-rw-r--r-- | docs/_includes/plugin-seperate.md | 14 | ||||
-rw-r--r-- | docs/_includes/sidebar.html | 5 | ||||
-rw-r--r-- | docs/_includes/sidebarlevel.html | 12 | ||||
-rw-r--r-- | docs/_includes/validation-http-common.md | 58 |
5 files changed, 0 insertions, 96 deletions
diff --git a/docs/_includes/csr-common.md b/docs/_includes/csr-common.md deleted file mode 100644 index a138677..0000000 --- a/docs/_includes/csr-common.md +++ /dev/null @@ -1,7 +0,0 @@ -## OCSP Must Staple -This extension can be added to the CSR with the command line option `--ocsp-must-staple` - -## Private key reuse - The option `--reuse-privatekey` can be used to keep using the same - private key across different renewals, which can be useful for example with - [DANE](https://en.wikipedia.org/wiki/DNS-based_Authentication_of_Named_Entities).
\ No newline at end of file diff --git a/docs/_includes/plugin-seperate.md b/docs/_includes/plugin-seperate.md deleted file mode 100644 index cffc536..0000000 --- a/docs/_includes/plugin-seperate.md +++ /dev/null @@ -1,14 +0,0 @@ -## Seperate download - -This plugin is offered as a separate download, which can be downloaded from the -[releases]({{ site.github.releases_url }}) page on GitHub has to be unpacked into -the main program folder to able to use. Note that after unpacking you will have to -unblock them for the .NET CRL to trust them. You can do that from the Windows File -Explorer by using the right mouse button and then checking the `Unblock` box on -the General tab. - - - -# Requires pluggable version - -This plugin requires to you use the `pluggable` version of the main executable.
\ No newline at end of file diff --git a/docs/_includes/sidebar.html b/docs/_includes/sidebar.html deleted file mode 100644 index 95e6dd9..0000000 --- a/docs/_includes/sidebar.html +++ /dev/null @@ -1,5 +0,0 @@ -<ul class="sidebar"> - {% for item in site.data.sitemap[page.sidebar] %} - {% include sidebarlevel.html item=item %} - {% endfor %} -</ul>
\ No newline at end of file diff --git a/docs/_includes/sidebarlevel.html b/docs/_includes/sidebarlevel.html deleted file mode 100644 index 2de2ebf..0000000 --- a/docs/_includes/sidebarlevel.html +++ /dev/null @@ -1,12 +0,0 @@ -{% assign z = '/win-acme' | append: page.url %} -{% assign x = include.item.url | append: '.html' %} -<li> - <a href="{{ include.item.url }}" {% if z==x or z==include.item.url %}style="color: #e83e8c;" {% endif %}>{{ include.item.title }}</a> - {% if include.item.subs %} - <ul class="sidebar"> - {% for sub in include.item.subs %} - {% include sidebarlevel.html item=sub %} - {% endfor %} - </ul> - {% endif %} -</li>
\ No newline at end of file diff --git a/docs/_includes/validation-http-common.md b/docs/_includes/validation-http-common.md deleted file mode 100644 index a0250e4..0000000 --- a/docs/_includes/validation-http-common.md +++ /dev/null @@ -1,58 +0,0 @@ -## Warmup - -Before allowing the ACME server to validate, the program will attempt to request -the validation file itself and note the result of that request in the log. A side -effect of this is that it forces the application to start in case it's application pool -or equivalent went to sleep, warming up the caches etc. This reduces the chance of -time-outs during validation. This used to be optional behaviour controlled by the -`--warmup` switch, but that is no longer in use. - -## web.config - -Optionally this plugin can place a `web.config` next to the validation file, to -help IIS properly serve the response. There are [many reasons](/win-acme/manual/validation-problems) -why IIS can fail to properly server the file. Some of them can be fixed this way. - -In interactive mode the program will ask you if you want to do this. In unattended mode you -can request it with the parameter `--manualtargetisiis` - -### Changing the template - -The web.config that will be copied lives in the root of the program directory with the -name `web_config.xml`. You can modify it to fit your needs, e.g. for MVC sites you might need: - -```XML -<configuration> - <system.webServer> - <staticContent> - <clear/> - <mimeMap fileExtension = ".*" mimeType="text/json" /> - </staticContent> - <handlers> - <clear /> - <add name="StaticFile" - path="*" - verb="*" - type="" - modules="StaticFileModule, - DefaultDocumentModule, - DirectoryListingModule" - scriptProcessor="" - resourceType="Either" - requireAccess="Read" - allowPathInfo="false" - preCondition="" - responseBufferLimit="4194304" /> - </handlers> - </system.webServer> -</configuration> -``` - -Or to disable URL Rewriting you might need to add this (in the beginning, right after `<clear />`). - -```XML -<rule name="LetsEncrypt Rule" stopProcessing="true"> - <match url="^\.well-known.*$" /> - <action type="None" /> -</rule> -```
\ No newline at end of file |