当前位置: 首页 > 知识库问答 >
问题:

HTTPD/WSGI/Flask - AH01630:客户端被服务器配置拒绝

孟英锐
2023-03-14

我使用Apache HTTPDmod_wsgi运行一个烧瓶应用程序。该应用程序运行良好,但每次访问页面时,error_log都会出现错误。(我正在尝试优化应用程序)。

错误为:AH01630:客户端被服务器配置拒绝:/apps/apache/httpd_alass/htdocs/

HTTPD.conf 包含

# Block all files by default, unless specifically allowed.
<FilesMatch "^.*$">
  Require all denied
</FilesMatch>

DocumentRoot "/apps/apache/httpd_atlas/htdocs/"

<Directory />
    Options None
    AllowOverride None
    Require all granted
</Directory>

# To enforce IP restrictions on RBB sites - replace [Allow from all] line below with [Allow from <local_ip_address> <TAM_WebSeal_hostname_or_ip>].
# If this site is accessed thru a proxy - you should allow access to the proxy host. If you want to enforce IP restrictions on this site, you
# should configure this on the proxy site. 
<Directory "/apps/apache/httpd_atlas/htdocs/">
    Options None
    AllowOverride None
    Require all granted
</Directory>

<FilesMatch "^.*\.(css|html?|js|pdf|txt|xml|xsl|gif|ico|jpe?g|png)$">
  Require all granted
</FilesMatch>

ScriptAlias /cgi-bin/ "/apps/apache/httpd_atlas/cgi-bin/"

<Directory "/apps/apache/httpd_atlas/cgi-bin">
    AllowOverride None
    Options None
    Require all granted
</Directory>

# WSGI Management
WSGIScriptAlias /atlas-test /apps/atlas/atlasda/webapp/toolkit-test/app.wsgi application-group=%<GLOBAL>
WSGIPythonHome /apps/atlas/anaconda

即使在WSGI正确提供此应用程序之后,为什么会在error_log中写入错误以及如何修复它?

共有1个答案

富锦
2023-03-14

可以帮助,如果你使用cgi,fastcig或fpm作为代理,你必须在你的vhost中添加一个位置来避免这个问题。

<Location />
require all granted
</Location>
 类似资料:
  • 当我试图通过浏览器访问localhost时会出现这个错误。 我使用以下方法检查了网站文件夹权限: 下面是我的配置文件: null

  • 当我试图通过浏览器访问localhost时,我遇到了这个错误。 403禁止 我用的是LTS Ubuntu 14.04 以下是我的配置文件: etc/apache2.conf apache日志 我在论坛上遵循的配置出错了 etc/apache2/启用站点/prestashop.conf 我已经添加到apache,我更新了服务,总是同样的错误,我想知道为什么它不工作,也许我想chmod这个网站可以在本

  • 当我从Apache2的错误日志中按照教程的Postfix admin部分中的指南并试图导航到网站< code > https://mail admin . example . com/setup . PHP (也只是用example.com替换了我的网站名称)时,我得到了这个有名无实的错误消息,因为我得到了一个403禁止。 以下是我在< code > sudo nano/etc/Apache 2/

  • 在尝试使用Apache mod\u wsgi运行Flask时,我已经尝试了很多事情,但都非常沮丧。 基本上,我已经完成了以下教程: http://flask.pocoo.org/docs/deploying/mod_wsgi/#installing-mod-wsgihttp://www.lonesomedev.com/?p=169 但在浏览器上,我得到了以下错误: 访问禁止! 您无权访问请求的对象

  • 我不知道为什么 apache 会抛出此错误,可以访问文档根目录中的所有文件,但是当我尝试访问名为 dhtxxxx.xxx 的文件时,我收到禁止错误,如果我将文件名更改为“htmlxgrid_dhx_terrace.css”它工作正常。 文档根目录具有,所以这不是问题: 以下是我在日志中看到的内容: [authz_core:error][pid XXXX:tid XXXXXXX][客户端xx.xx.

  • 我正在得到 [2012年4月24日星期二 12:12:55][错误][客户端 127.0.0.1] 客户端被服务器配置拒绝:/labs/Projects/Nebula/bin/ 我的目录结构如下(我使用的是Symfony 2,其他web框架的结构应该类似) 我有这样的vhosts设置: 我想知道出了什么问题,我该如何解决它?