简体   繁体   English

500服务器错误(连接重置),无法加载JS文件

[英]500 server error (connection reset), JS file won't load

My Website: iansvoboda.com 我的网站:iansvoboda.com

This JS file I am loading doesn't load properly for some reason. 我正在加载的此JS文件由于某种原因无法正确加载。 This randomly cropped up at some point in the last week or so and I haven't actually made any changes between now and then. 这是在过去一周左右的某个时间随机出现的,从那时起我实际上没有进行任何更改。

www.iansvoboda.com/js/app.min.js

My console indicates that this is due to a 500 internal server error: ERR_CONNECTION RESET 我的控制台指示这是由于500 internal server error: ERR_CONNECTION RESET

I did some research and according to my server logs I saw an entry that stood out: 我做了一些研究,根据我的服务器日志,我看到一个突出的条目:

[Mon Jul 14 11:09:43 2014][debug] core.c(3118): [client 85.247.10.199] redirected from r->uri = /js/app.min.js, referer: http://iansvoboda.com/
[Mon Jul 14 11:11:11 2014][error] [client 180.76.6.58] Request exceeded the limit of 10 internal redirects due to probable configuration error. Use 'LimitInternalRecursion' to increase the limit if necessary. Use 'LogLevel debug' to get a backtrace.

Can anyone provide a suggestion for how to resolve? 谁能提供解决方法的建议? If you all need more info, just let me know. 如果您都需要更多信息,请告诉我。

Dig into your server configuration. 挖掘您的服务器配置。 Your logs say 你的日志说

Use 'LogLevel debug' to get a backtrace. 使用“ LogLevel调试”获取回溯。

This will tell you where the redirects are going, and you can spot the ones that can be removed (nobody needs more than 10 redirects — even your logs say "probable configuration error"). 这将告诉您重定向的方向,并且可以发现可以删除的重定向(没人需要超过10个重定向-甚至您的日志说“可能的配置错误”)。 This will depend on your website's needs. 这将取决于您的网站的需求。

If nothing else, raise the LimitInternalRecursion to a value that prevents the error — but note that if it's caused by an internal loop, this won't help. 如果没有其他问题,请将LimitInternalRecursion提升为可防止错误的值-但请注意,如果它是由内部循环引起的,则无济于事。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM