Apache HttpServer
iteye_15532
这个作者很懒,什么都没留下…
展开
-
Apache(一)安装
本文仅记录学习Apache HttpServer的过程,以便加深记忆及以后查找 一、下载Apache HttpServer 下载地址:http://httpd.apache.org/ 二、解压 gzip -dvf httpd-2.4.1.tar.gz tar -xvf httpd-2.4.1.tar 安装前需依次装好...原创 2012-03-21 16:22:39 · 110 阅读 · 0 评论 -
Apache(二)启动/停止 工具介绍
启动/停止Apache HttpServer 一、进入目录prefix/bin 通过执行 apachectl 控制apache;apachectl在运行时会设置一些必要的环境变量信息,以保证 httpd能正确的运行,然后再调用httpd。 二、修改prefix/conf/httpd.conf 把ServerName取消注释,并设置ServerName的...原创 2012-03-24 18:07:39 · 106 阅读 · 0 评论 -
Apache(三)修改绑定端口和IP
修改httpd.conf文件中的Listen可设置监听端口 默认监听端口是80 Listen 80 设置一、监听端口80和8080 Listen 80 Listen 8080 设置二、绑定指定地址 Listen 10.192.168.111:8080 设置三、绑定IPV6地址,IP地址需用方括号 Listen [2001:db...原创 2012-03-24 18:18:14 · 610 阅读 · 0 评论 -
Apache(四)访问验证方式
Require all granted 允许所有请求访问资源 Require all denied 拒绝所有请求访问资源 Require env env-var [env-var] ... 当指定环境变量设置时允许访问 Require method http-method [http-method] ... 允许指定的http请求方法访问资源 ...原创 2012-03-27 19:42:31 · 240 阅读 · 0 评论 -
Apache(五)设置资源访问限制
以下[]中的表示可选项,实际中不能包含[]及其内容 一、指定目录的AuthType <Directory /root/apache2> AuthType Basic [None | Basic | Digest | Form] </Directory> 二、设置AuthName,该信息将在客户端提醒框上显示 <Direct...原创 2012-03-27 20:18:41 · 274 阅读 · 0 评论 -
Apache(六)Authentication Provider Aliases
以下是一个简单的目录上下文配置 <Directory /root/apache2/doc> AuthType Basic AuthName Document AuthUserFile /root/apache2/auth/passwd Require user rote </Directory> 上面是通过AuthUserType指定的用户...原创 2012-03-27 20:43:56 · 231 阅读 · 0 评论 -
Apache(七)使用auth_dbm
一、AuthDBMUserFile <AuthnProviderAlias file ufile> AuthUserFile /root/apache2/auth/userfile </AuthnProviderAlias> <Directory /root/apache2/htdoc> AllowOverride None A...原创 2012-03-28 18:42:52 · 249 阅读 · 0 评论