gpt4 book ai didi

iis-7 - Powershell IIS7 管理单元将 SSL 证书分配给 https 绑定(bind)

转载 作者:行者123 更新时间:2023-12-04 01:30:01 25 4
gpt4 key购买 nike

作为我们自动构建过程的一部分,我们正在使用 powershell 脚本清理和重建我们的 IIS 站点。

一旦我创建了 AppPool 和包含绑定(bind)信息的网站,我想为 https 绑定(bind)设置 SSL 证书。我在网上找不到任何具体的例子;在任何地方都可以证明这一点。

有任何想法吗?

寻找一个仁慈的powershell神...

最佳答案

您可以将前面的示例与在网站中创建 https 绑定(bind)合并。

import-module webadministration
$computerName = $Env:Computername
$domainName = $Env:UserDnsDomain
New-WebBinding -Name "MyWebSite" -IP "*" -Port 443 -Protocol https
Get-ChildItem cert:\LocalMachine\My | where { $_.Subject -match "CN\=$Computername\.$DomainName" } | select -First 1 | New-Item IIS:\SslBindings\0.0.0.0!443

关于iis-7 - Powershell IIS7 管理单元将 SSL 证书分配给 https 绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2628970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com