Questions tagged «httpd»

httpd是Web服务器的典型进程名称。

6
CentOS Apache HTTPD配置(禁止403)
这就是我的httpd.conf中的内容 <VirtualHost *:80> ServerAdmin spero78@spero78.com ServerName mcmoddr.com ServerAlias www.mcmoddr.com DocumentRoot /home/mcmoddr/www/ ErrorLog /mcmoddr/logs/error.log CustomLog /mcmoddr/logs/accesslog combined </VirtualHost> 当访问该网站时,我收到403禁止错误,该文件与vsftpd一起添加,并具有drwxr-xr-x权限

3
Apache + PHP-FPM =随机的“错误解析脚本头” + Seg Faults
我已经使用proxy_fcgi与Apache 2.4一起安装了PHP-FPM,一切正常,但是4-6个请求中的每个请求,Apache都会返回一个空白页。这发生在我的主要网站http://danielhe.com/上,但不发生在子域虚拟主机上。 这显示了Apache的错误日志,[client x] AH01070:解析脚本头时出错 最终,有时Apache出现segfaults AH00052:子pid 9740退出信号分段错误(11) 通过几次刷新页面,我可以很容易地重现“错误解析脚本头”,但是在几次“错误解析脚本头”之后,seg错误会随机发生。 更新 我找到了针对段错误的修复程序,并且WSOD显然已经修复了自身。mod_deflate存在一些问题,但是Apache文档中的此配置对其进行了修复 SetOutputFilter DEFLATE BrowserMatch ^Mozilla/4 gzip-only-text/html BrowserMatch ^Mozilla/4\.0[678] no-gzip BrowserMatch \bMSIE !no-gzip !gzip-only-text/html # Don't compress images SetEnvIfNoCase Request_URI \ \.(?:gif|jpeg|jpg|png)$ no-gzip dont-vary # Make sure proxies don't deliver the wrong content Header append Vary User-Agent env=!dont-vary

8
HTTPD死了,但子系统锁定
我今天在php.ini中修改了max_execution_time,当我重新启动服务器时,出现此错误: Stopping httpd: [FAILED] Starting httpd: (98)Address already in use: make_sock: could not bind to address [::]:80 (98)Address already in use: make_sock: could not bind to address 0.0.0.0:80 no listening sockets available, shutting down Unable to open logs 我杀死了httpd proc:killall httpd,并且启动正常,但是我无法在服务器上打开任何网站。 服务httpd状态OUTPUT: httpd dead but subsys locked 我从/ var / …

4
来自Apache的SSL连接错误
我正在Ubuntu 10.04上的Apache / 2.2.14上运行一个(自签名)SSL证书站点,但是各种浏览器在尝试进行一半连接时给出错误。刚才看到了来自Chrome的短暂错误: "Error 126 (net::ERR_SSL_BAD_RECORD_MAC_ALERT): Unknown error." 单击刷新,问题消失了一段时间。 wget也是: $ wget --no-check-certificate https://dev.foo.com/deps/ --2010-09-08 19:30:26-- https://dev.foo.com/deps/ Resolving dev.foo.com... 184.72.53.220 Connecting to dev.foo.com|184.72.53.220|:443... connected. OpenSSL: error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block type is not 01 OpenSSL: error:04067072:rsa routines:RSA_EAY_PUBLIC_DECRYPT:padding check failed OpenSSL: error:1408D07B:SSL routines:SSL3_GET_KEY_EXCHANGE:bad signature Unable to establish SSL connection. 立即再次运行它,它的工作原理是: $ wget --no-check-certificate …


1
Apache 2.2中的范围中的“允许”
我想在Apache httpd 2.2中添加一个IP地址范围,其中第三个八位位组在一个IP地址范围内: X.Y.192-254 我可以做这个: Allow from X.Y.192 Allow from X.Y.193 . . . Allow from Y.Y.254 但是,这很冗长。我基本上是在尝试添加部分IP的列表。 有捷径吗?

1
具有代理和更改内容类型的Apache RewriteRule
当前,我们正在使用mod_proxy代理以通过以下行代理到正确的目标: ProxyPass /我的路径平衡器:// server / path / to / real / thing 但是,第三方向我们发送了内容类型错误的请求。无法更改它们,因此我认为使用mod_rewrite可以通过以下操作实现此目的 RewriteRule ^ / my-path(。*)balancer:// server / path / to / real / thing $ 1 [P,T = text / xml] 但是,这似乎没有执行任何操作,并且该规则似乎没有在执行。 是否可以使用mod_rewrite实现此目的,我是否为此目的正确设置了此设置?

1
jboss前面的httpd和ejbca证书生成
我试图在jboss服务器前设置httpd,并使用x.509证书进行客户端身份验证。我已经按照本教程使用openssl创建了自己的CA,服务器和客户端证书,并且可以使用。现在,我尝试使用ejbca工具而不是openssl生成证书,但是失败了。我生成的证书配置错误,因为当我尝试使用它们时,我在apache和jboss之间收到ssl握手错误,并且在apache日志中可以看到 [Mon Jan 07 14:51:28 2013] [debug] ssl_engine_kernel.c(1874): OpenSSL: Loop: SSLv3 read server hello A [Mon Jan 07 14:51:28 2013] [debug] ssl_engine_kernel.c(1321): [client 10.55.160.194] Certificate Verification: depth: 2, subject: /CN=DEXXISCA/O=DEXXIS/C=FR, issuer: /CN=DEXXISCA/O=DEXXIS/C=FR [Mon Jan 07 14:51:28 2013] [debug] ssl_engine_kernel.c(1321): [client 10.55.160.194] Certificate Verification: depth: 1, subject: /CN=DEXXIS-RND-CA/O=DEXXIS/C=FR, issuer: /CN=DEXXISCA/O=DEXXIS/C=FR [Mon …
httpd  jboss 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.