Umbraco日志文件每分钟给出(404)Not Found错误

时间:2015-08-12 14:02:50

标签: logging https url-rewriting umbraco7 virtual-directory

我们有一个使用Umbraco 7.2.4版创建的网站。它在IIS 7中设置为/ home的虚拟目录。必须将其设置为虚拟目录,因为其他公司站点依赖于此虚拟目录。我们在IIS上还有一个URL重写设置,可以将任何内容从HTTP重定向到HTTPS。以下是IIS在根web.config文件中创建的重写规则:

<rule name="HTTP to HTTPS redirect" stopProcessing="true">
    <match url="(.*)" />
    <conditions>
        <add input="{HTTPS}" pattern="off" />
    </conditions>
    <action type="Redirect" url="https://{HTTP_HOST}/{R:1}" redirectType="Temporary" />
</rule>

HTTP和HTTPS绑定也已在IIS中设置。

umbraco日志文件每分钟都会发出以下消息:

System.Security.Cryptography.CryptographicException: Error occurred during a cryptographic operation.
   at System.Web.Security.Cryptography.HomogenizingCryptoServiceWrapper.HomogenizeErrors(Func`2 func, Byte[] input)
   at System.Web.Security.FormsAuthentication.Decrypt(String encryptedTicket)
   at Umbraco.Core.StringExtensions.DecryptWithMachineKey(String value)
   at Umbraco.Web.Mvc.AdminTokenAuthorizeAttribute.AuthorizeCore(HttpContextBase httpContext)
2015-08-11 10:57:02,376 [7] ERROR Umbraco.Web.Scheduling.ScheduledPublishing - [Thread 14] An error occurred with the scheduled publishing. The base url used in the request was: https://www.xyzsite.com/home/umbraco/, see http://our.umbraco.org/documentation/Using-Umbraco/Config-files/umbracoSettings/#ScheduledTasks documentation for details on setting a baseUrl if this is in error
System.Net.WebException: The remote server returned an error: (404) Not Found.
   at System.Net.WebClient.UploadDataInternal(Uri address, String method, Byte[] data, WebRequest& request)
   at System.Net.WebClient.UploadString(Uri address, String method, String data)
   at Umbraco.Web.Scheduling.ScheduledPublishing.Run()

我们设置&#34; umbracoUseSSL&#34;到&#34;真&#34;在web.config中,我们将umbracoSettings.config中的scheduledTasks标记设置为以下内容:

  <scheduledTasks baseUrl="www.xyzsite.com/home/umbraco">

  </scheduledTasks>

网站确实按预期运行,但我无法使用/ home / umbraco登录网站。浏览器只是在登录后给我一个空白的屏幕。我们创建了另一个IIS应用程序,指向只能在内部访问的相同位置,以便我们可以访问管理页面,但日志文件仍然填写相同的错误消息。

有没有其他人用他们的日志文件遇到过这个问题?是否有某种方式应该以不同方式配置?

0 个答案:

没有答案