-
Notifications
You must be signed in to change notification settings - Fork 184
New issue
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
Install-ACMECertificate and centralized Certificate store #352
Comments
The issue seems to be down to this line:
I'm not sure what the logic is behind that, so haven't submitted a pull request. Perhaps simply changing this:
to this would work though (without knowing why this was implemented I wouldn't want to make a pull request though).
Likely something even simpler could be used; the above is just attempting to minimize side effects as I don't know the requirement driving this logic. |
(actually - I've made a non-breaking change; adding a parameter so people not hitting this issue can use as they do today, but those of us wishing to bypass this issue can add the |
#352 - Allow sslFlags to remain unchanged.
I'm still experiencing this issue, even following updating the module to the latest build. I have multiple bindings to a single site, each binding with a different SSL Certs. After I execute the following command: Install-ACMECertificate -CertificateRef atc -Installer iis -InstallerParameters @{ WebSiteRef = 'IIS Site Name'; KeepExistingSslFlags = $true; Force = $true} My other bindings stop working, & when I look at them, I see the following error (see below image). Am I doing something wrong? Is there something different that I should be doing? Thank you so much!! |
That looks correct, though you've not specified values for the Please can you take a look at: I've not had a chance to look closer, but hopefully answers to the above will help determine where the issue is. |
Actually this is my fault... just tried the version from the PS Gallery and realised it behaved differently to my local copy / after digging around found I'd not included one of the files when staging for commit. This is now fixed via this commit; though will not be available in the module until the pull request's accepted: JohnLBevan@370024c |
…naming convention
#352 - allow ssl flags to remain unchanged
…KeepExistingSslFlags would have shown as Force
…KeepExistingSslFlags would have shown as Force
When installing a certificate into IIS using Install-ACMECertificate with the force parameter set to true, the require SNI And use centralized Certificate store values get set to try and the certificate itself is not used.
The actual certificate is install, so I just need to untick these values and select the ssl certifcate in iis. But how do I create this effect without manual intervention.
WIthout using force, there is a conflicting binding.
The text was updated successfully, but these errors were encountered: