We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When I use proxy all CmdLet work correctly except Update-ACMECertificate:
Update-ACMECertificate
Update-ACMECertificate : Impossible de se connecter au serveur distant Au caractère C:\scripts\Cert\Cert_Common.ps1:117 : 5 + Update-ACMECertificate -VaultProfile cfb-vault $certGroup + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [Update-ACMECertificate], WebException + FullyQualifiedErrorId : System.Net.WebException,ACMESharp.POSH.UpdateCertificate
In source: for Update-ACMECertificate CmdLet:
using (var web = new WebClient()) { if (v.Proxy != null) web.Proxy = v.Proxy.GetWebProxy(); var uri = new Uri(new Uri(v.BaseUri), upLink.Uri); web.DownloadFile(uri, tmp); }
For all other CmdLet:
using (var c = ClientHelper.GetClient(v, ri)) { c.Init(); c.GetDirectory(true); var challenge = c.SubmitChallengeAnswer(authzState, ChallengeType, UseBaseUri); ii.Challenges[ChallengeType] = challenge; }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When I use proxy all CmdLet work correctly except
Update-ACMECertificate
:In source: for
Update-ACMECertificate
CmdLet:For all other CmdLet:
The text was updated successfully, but these errors were encountered: