Apache HTTP Server Version 2.2 文档

本日志由 flyinweb 于 2009-06-26 15:08:00 发表到 WEB服务器 中,目前已经被浏览 2239 次,评论 0 次;

作者添加了以下标签: Apache文档

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

Red Hat / CentOS Apache 2 FastCGI PHP Configuration

FastCGI is a protocol for interfacing interactive programs with a web server. FastCGI's main aim is to reduce the overhead associated with interfacing the web server and CGI programs, allowing a server to handle more web page requests at once.

Also, PHP is not recommended with multithreaded Apache2 (worker MPM) because of performance and some 3rd party PHP extensions are not not guaranteed thread-safe.

nginx and lighttpd has inbuilt sup

本日志由 flyinweb 于 2010-09-02 12:14:24 发表到 WEB服务器 中,目前已经被浏览 9 次,评论 0 次;

作者添加了以下标签: FastCGI

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

症状:

apache编译过程中出现如下错误:

...
server/.libs/libmain.a(exports.o):(.data+0x9f0): undefined reference to `apr_os_uuid_get'
...

解决办法:

卸载原来系统中的apr,重新编译通过

本日志由 flyinweb 于 2010-08-25 14:06:54 发表到 WEB服务器 中,目前已经被浏览 58 次,评论 0 次;

作者添加了以下标签: apr_os_uuid_get

Apache和Nginx的SSL证书的生成及配置

本日志由 flyinweb 于 2010-08-25 11:19:19 发表到 WEB服务器 中,目前已经被浏览 60 次,评论 0 次;

作者添加了以下标签: SSL certificates

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

SSL certificates support

1. Generate a Certificate Signing Request (CSR)

2. SSL Certificates Support - Enrollment

3. Installation Instructions for SSL Certificates

4. Export (or Backup) a Certificate

本日志由 flyinweb 于 2010-08-25 10:47:20 发表到 WEB服务器 中,目前已经被浏览 64 次,评论 0 次;

作者添加了以下标签: SSL certificates

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

Description

 
This document provides instructions for installing SSL Certificates. If you are unable to use these instructions for your server, VeriSign recommends that you contact either the vendor of your software or an organization that supports Apache-SSL.

本日志由 flyinweb 于 2010-08-25 10:42:42 发表到 WEB服务器 中,目前已经被浏览 48 次,评论 0 次;

作者添加了以下标签: Apache SSL

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

Two weeks ago we have started new version of one of our primary web projects and have started very massive advertisement campaign to promote this web site. As the result of that advertisements, our outgoing traffic has been increased to 200-250Mbit/s from only one server! In this article I will describe, how to build stable and efficient web site with two-layer architecture (with frontend + backend web servers) or how to modify your current server configuration to get additional resources to handle more requests.

本日志由 flyinweb 于 2010-06-10 11:27:51 发表到 WEB服务器 中,目前已经被浏览 245 次,评论 0 次;

作者添加了以下标签: NginxReverse-Proxy Server反向代理

首页只显示了部分日志内容,要查看日志的全部内容请阅读全文

  1. [root@localhost conf]# /usr/sbin/httpd -t  
  2. [Tue Apr 27 11:12:59 2010] [warn] _default_ VirtualHost overlap on port 80, the first has precedence  
  3. Syntax OK 

Answer: The NameVirtualHost directive is a required to configure name-based virtual hosts. Add this to your httpd.conf file to fix this issue. Open httpd.conf file:
# vi httpd.conf
Add NameVirtualHost as follows:
NameVirtualHost *:80
OR add server IP
NameVirtualHost 202.54.1.1:80
Save and close the file. Restart httpd web server under RHEL / Red Hat / Fedora / CentOS Linux:
# service httpd restart

本日志由 flyinweb 于 2010-04-27 12:01:04 发表到 WEB服务器 中,目前已经被浏览 261 次,评论 0 次;

作者添加了以下标签: _default_ VirtualHostNameVirtualHost

311/4