摘要:
原文:http://www.5ilinux.com/apache03.html
转载请注明出处:)
apache服务器实现用户验证
apache服务器已经内置用户验证机制,大家只要适当的加以设置,便可以控制网站的某些部分要用户验证。大家只要跟着我一步步做下来就应该能轻松实现用户验证。
前期准备,必须已经安装apache,如果还没安装,或者对安装很模糊的话,请先预习http://www......
摘要:
apache 2.0.47 安装笔记 cloud/2003.10.23mail:flashc@21cn.com欢迎转载,转载请保留以上信息,谢谢个人水平有限,文中难有遗漏错误的地方,欢迎指出。笔记系后期整理,不能保证完全可用,主要是apache的conf文件,不知道是否有遗漏,请大家见谅。 解压软件 # tar zxvf httpd-2.0.47.tar.gz -c /setup mod_l......
编译apache2.0.X带ssl模块出错?恳请解答
看资料说apache2.0.x不用mod_ssl就能支持ssl了,所以我直接编译apache,配置如下:
【程序编程相关:
apache初级教程一】 【推荐阅读:
apache初级教程二】
【扩展信息:
使用mod_limitipconn.c来】 ./configure --prefix=/usr/local/apache2 --enable-modules=so --enable-ssl=shared
配置过程没有错,但make时就出问题了,错误提示如下
in file included from /usr/include/openssl/ssl.h:179,
from mod_ssl.h:125,
from mod_ssl.c:60:
/usr/include/openssl/kssl.h:72:18: krb5.h: no such file or directory
in file included from /usr/include/openssl/ssl.h:179,
from mod_ssl.h:125,
from mod_ssl.c:60:
/usr/include/openssl/kssl.h:132: parse error before "krb5_enctype"
/usr/include/openssl/kssl.h:134: parse error before "far"
/usr/include/openssl/kssl.h:135: parse error before } token
/usr/include/openssl/kssl.h:147: parse error before "kssl_ctx_setstring"
/usr/include/openssl/kssl.h:147: parse error before * token
/usr/include/openssl/kssl.h:148: parse error before * token
/usr/include/openssl/kssl.h:149: parse error before * token
/usr/include/openssl/kssl.h:149: parse error before * token
/usr/include/openssl/kssl.h:150: parse error before * token
...
下一页 摘要:
apache的配置文件httpd.conf是主要的配置文件,但是针对每个目录,apache还允许在它们各自的目录下防止一个叫做.htacess的文件,这个文件同样也能控制这个目录的属性
allowoverride参数就是指明apache服务器是否去找.htacess文件作为配置文件,如果设置为none,那么服务器将忽略.htacess文件,如果设置为all,那么所有在.htaccess文件......