RHEL 6 LAMP(一)(2)
MaxClients 300 #每线程最多300
MinSpareThreads 25 #最小线程是25个
MaxSpareThreads 75 #最多线程是75
ThreadsPerChild 25 #默认为25
MaxRequestsPerChild 0 #最大请求无限制
</IfModule>
Listen 80 #服务器监听端口默认为80
#拓展模块。自己查
LoadModule auth_basic_module modules/mod_auth_basic.so
LoadModule auth_digest_module modules/mod_auth_digest.so
...
Include conf.d/*.conf #扩展的配置文件
User apache #apache的用户身份
Group apache #apache的组身份
ServerAdmin root@localhost #服务器管理员的邮件地址
UseCanonicalName Off #没用的
DocumentRoot "/var/www/html" #默认站点页面存放目录
<Directory /> #网站/目录的权限
Options FollowSymLinks #支持连接
AllowOverride None
</Directory>
<Directory "/var/www/html"> #默认站点页面存放目录权限
Options Indexes FollowSymLinks #站点索引,支持连接
AllowOverride None #访问控制
Order allow,deny #先允许再拒绝
Allow from all #允许所有
# Deny from ip #拒绝某个ip的访问
</Directory>
<IfModule mod_userdir.c> #个人主页支持
UserDir disabled
</IfModule>
DirectoryIndex index.html index.html.var #目录索引页面名称
#访问控制文件.htaccess功能
AccessFileName .htaccess
<Files ~ "^\.ht">
Order allow,deny
Deny from all
Satisfy All
</Files>
AddDefaultCharset UTF-8 #默认页面编码为UTF-8
----------------------------------------------
添加ServerName web1.amao.com
1、个人主页支持“http://ip/~用户名”访问个人主页
a、修改配置文件,支持这种访问
vi /etc/httpd/conf/httpd.conf
找到
<IfModule mod_userdir.c>
#
# UserDir is disabled by default since it can confirm the presence
# of a username on the system (depending on home directory
# permissions).
#
UserDir disabled #去掉某个用户的访问
#
# To enable requests to /~user/ to serve the user's public_html
# directory, remove the "UserDir disabled" line above, and uncomment
相关新闻>>
- 发表评论
-
- 最新评论 更多>>