mirror of
https://github.com/ridercz/AutoACME.git
synced 2026-04-25 15:15:53 +03:00
[PR #34] [MERGED] Fallback DNS => HTTP (self-hosted) when DNS test fails #47
Labels
No labels
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/AutoACME#47
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/ridercz/AutoACME/pull/34
Author: @avonwyss
Created: 11/28/2018
Status: ✅ Merged
Merged: 11/28/2018
Merged by: @ridercz
Base:
master← Head:fallback📝 Commits (4)
720995bIntroduced support for fallback DNS => HTTP (self-hosted) when DNS test failsc1d783dChanged challenge retry defaults to accomodate for DNS delaysca8da42Replaved Trace.Xxx calls with own Log.Xxx calls since Trace does not play well with async (indentation not captures in context), and ConfigureAsync(true) due to WMI issues0eabe00Fix System.Net.Http binding redirects📊 Changes
22 files changed (+536 additions, -457 deletions)
View changed files
📝
Altairis.AutoAcme.Configuration/Store.cs(+2 -2)📝
Altairis.AutoAcme.Configuration/app.config(+1 -1)📝
Altairis.AutoAcme.Core/AcmeEnvironment.cs(+17 -34)📝
Altairis.AutoAcme.Core/Altairis.AutoAcme.Core.csproj(+5 -0)📝
Altairis.AutoAcme.Core/AutoAcmeContext.cs(+36 -35)📝
Altairis.AutoAcme.Core/CertificateRequestResult.cs(+47 -48)📝
Altairis.AutoAcme.Core/Challenges/ChallengeResponseProvider.cs(+30 -26)📝
Altairis.AutoAcme.Core/Challenges/DnsChallengeResponseProvider.cs(+30 -32)➕
Altairis.AutoAcme.Core/Challenges/FallbackChallengeResponseProvider.cs(+51 -0)📝
Altairis.AutoAcme.Core/Challenges/HttpChallengeFileResponseProvider.cs(+5 -6)📝
Altairis.AutoAcme.Core/Challenges/HttpChallengeHostedResponseProvider.cs(+4 -5)📝
Altairis.AutoAcme.Core/Challenges/HttpChallengeResponseProvider.cs(+31 -37)➕
Altairis.AutoAcme.Core/Challenges/IChallengeResponseProvider.cs(+13 -0)➕
Altairis.AutoAcme.Core/Log.cs(+69 -0)📝
Altairis.AutoAcme.Core/app.config(+1 -1)📝
Altairis.AutoAcme.IisSync/Altairis.AutoAcme.IisSync.csproj(+3 -3)📝
Altairis.AutoAcme.IisSync/App.config(+1 -1)📝
Altairis.AutoAcme.IisSync/Program.cs(+66 -60)📝
Altairis.AutoAcme.IisSync/packages.config(+2 -2)📝
Altairis.AutoAcme.Manager/Altairis.AutoAcme.Manager.csproj(+0 -2)...and 2 more files
📄 Description
This allows to use both DNS and self-hosted HTTP challenges safely at the same time. When the DNS setup (CNAME or otherwise) does not match the expectation, HTTP is used. Documented in https://github.com/ridercz/AutoACME/wiki/AutoACME-in-a-web-farm-environment
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.