0

我正在为我的所有证书切换到 Lets Encrypt,并且由于质询请求失败,我的 Laravel 和 Zend 应用程序上的 Web 作业失败。对于我的静态站点,一切正常,对于 Laravel/Zend 站点,虚拟路径已从“wwwroot”修改为“wwwroot/public”。

我不确定需要在 web.config 文件中添加什么内容才能将质询请求传递到“/well-known/acme-challenge”。

我的 web.config 如下,我尝试将 '/.well-known/acme-challenge/web.config' 的内容移动到其中,尝试将挑战请求传递给 '/.well-known.. .',添加了其他映射,我无法工作。

到目前为止,为了每季度更新证书,我一直在将虚拟路径修改回“wwwroot”,然后手动运行网络作业,显然这不是一个好的解决方案。

我的应用程序的 web.config

<configuration>
  <system.webServer>
    <rewrite>
      <rules>
        <rule name="Imported Rule 1" stopProcessing="true">
          <match url="^(.*)/$" ignoreCase="false" />
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
          </conditions>
          <action type="Redirect" redirectType="Permanent" url="/{R:1}" />
        </rule>
        <rule name="Imported Rule 2" stopProcessing="true">
          <match url="^" ignoreCase="false" />
          <conditions>
            <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" />
            <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" />
          </conditions>
          <action type="Rewrite" url="index.php" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
</configuration>

./well-known/acme-challenge 的 web.config

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <system.webServer>
    <handlers>
      <clear />
      <add name="ACMEStaticFile" path="*" verb="*" modules="StaticFileModule" resourceType="Either" requireAccess="Read" />
    </handlers>
    <staticContent>
      <remove fileExtension="." />
      <mimeMap fileExtension="." mimeType="text/plain" />
    </staticContent>
  </system.webServer>
  <system.web>
    <authorization>
      <allow users="*"/>
    </authorization>
  </system.web>
</configuration>

我正在使用 SJKP 的 Azure Let's Encrypt 扩展的 0.9.3

先感谢您。

4

1 回答 1

0

原来我自己已经回答了这个问题。

我需要添加路径映射。

虚拟路径:/.well-known 物理路径:site\wwwroot.well-known 类型:目录

于 2019-09-13T23:28:30.423 回答