标签:glob make dom 默认端口 expr 查看进程 dns oba module
编译安装Apache HTTP Server 2.4.231.1 GCC和C++编译器
1.1.1 如果没有安装以上依赖包请执行以下命令安装:
[root@xxx ~]# yum install -y gcc gcc-c++
1.1.2 如果已经安装其中一个,可以单独执行以下命令安装其中一个:
[root@xxx ~]# yum install -y gcc
[root@xxx ~]# yum install -y gcc-c++
configure: error: no acceptable C compiler found in $PATH.
configure: error: you need a C++ compiler for C++ support.
1.2 APR,APR-Util和PCRE
main‘:<br/>httpd-2.4.23/support/ab.c:2416: undefined reference to
CRYPTO_malloc_init‘Include conf/extra/httpd-vhosts.conf
Include conf/extra/httpd-ssl.conf
Listen 443
SSLSessionCache ? ? ? ?"shmcb:/usr/local/apache2/logs/ssl_scache(512000)"
SSLSessionCacheTimeout ?300
<VirtualHost default:443> ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#端口需要和上面一致
? DocumentRoot "/usr/local/apache2/htdocs" #应用文件根目录,在安装目录下面
? ServerName www.xxx.com ? ? ? ? ? ? ? ? ? ? ? ? ? ? #监听的域名或者ip
? ServerAdmin xxx@xxx.com ? ? ? ? ? ? ? ? ? ? ? ? ? ? #管理员邮箱
? ErrorLog "/usr/local/apache2/logs/ssl_error.log" ? ? ? ? ? ?#错误日志路径
? TransferLog "/usr/local/apache2/logs/ssl_access.log" ?#访问日志路径
? SSLEngine on ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#启用SSLEngine
? SSLProxyEngine on ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?#启用SSLProxyEngine
? #如果使用RSA或DSA或ECC certificate的话也要一起列出
? SSLCertificateFile "/usr/local/apache2/conf/server.crt" ? ? #Server Certificate证书路径
? SSLCertificateKeyFile "/usr/local/apache2/conf/server.key" ?#Server Private Key路径
? #下面是可选的,如果有的话,需要去掉前面的#
? #SSLCertificateChainFile "/usr/local/apache2/conf/server-ca.crt" ?#Server Certificate Chain
? #SSLCACertificatePath "/usr/local/apache2/conf/ssl.crt" ? ? ? ? ? #Certificate Authority (CA)
? #Certificate Revocation Lists (CRL)
? #SSLCARevocationPath "/usr/local/apache2/conf/ssl.crl"
? #SSLCARevocationFile "/usr/local/apache2/conf/ssl.crl/ca-bundle.crl"
? #SSLCARevocationCheck chain
? #Client Authentication (Type):
? #SSLVerifyClient require
? #SSLVerifyDepth ?10
? #TLS-SRP mutual authentication
? #SSLSRPVerifierFile "/usr/local/apache2/conf/passwd.srpv"
? #定制化格式日志
? CustomLog "/usr/local/apache2/logs/ssl_request.log" \
? ? ? ? ? "%t %h %{SSL_PROTOCOL}x %{SSL_CIPHER}x \"%r\" %b"
? #监听的路径和转发的路径,根据实际情况修改,需要输入https://和最后面的/
? ProxyRequests Off
? ProxyPass / https://ip:443/ ? ? ? ? ? ? ? ?
? ProxyPa***everse / https://ip:443/ ? ? ? ? ? ??
</VirtualHost>
编译安装Apache HTTP Server 2.4.23 以及配置HTTP/HTTPS反向代理
标签:glob make dom 默认端口 expr 查看进程 dns oba module
原文地址:http://blog.51cto.com/niming2008/2136413