1. 文章内容转自- ->https://blog.csdn.net/u012291157/article/details/46492137

1、apache开机自启动

  1. [root@csr ~]# cp `which apachectl` /etc/init.d/httpd
  2. [root@csr ~]# vim /etc/init.d/httpd 在#!/bin/bash下加入:(前面需要'#')
  3. # chkconfig: 2345 85 15
  4. # description: httpd2.4...
  5. [root@csr ~]# chkconfig --add /etc/init.d/httpd
  6. [root@csr ~]# chkconfig --list httpd
  7. httpd 0:off 1:off 2:on 3:on 4:on 5:on 6:off

  

2、配置多个虚拟主机:基于域名、IP、PORT

  1. 很多时候你想在一台机器上跑多个网站,比如一个跑discuz、一个跑wordpress、一个跑其他网站...
  2. 这时候你就要需要开启apache的虚拟主机配置了。
  3.  
  4. 前面几篇实际上有介绍过这个了,这里还是重新讲下吧:
  5. 第一步:编辑httpd.confvhost的注释去掉(去掉'#')
  6. # Include conf/extra/httpd-vhosts.conf
  7. 第二步:开始配置虚拟主机
  8. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  9. # 基于域名的
  10. <VirtualHost *:80>
  11. DocumentRoot "/data/www" # 指定你的web根目录
  12. ServerName www.csr.com # 配置多个的时候改这里即可
  13. </VirtualHost>
  14. # 基于IP的
  15. <VirtualHost 192.168.137.22:80>
  16. DocumentRoot "/data/www1"
  17. ServerName www.csr.com
  18. </VirtualHost>
  19. # 基于PORT的,只是这个还必须编辑httpd.conf加入:Listen 8080
  20. <VirtualHost *:8080>
  21. DocumentRoot "/data/www2"
  22. ServerName www.csr.com
  23. </VirtualHost>
  24.  
  25. 对于http,默认端口是80,如果是基于端口的,用户每次请求还需要输入port,而且很多用户甚至不懂的怎么做,所以这种方法不常用;
  26. 基于ip的,现如今ip地址紧缺,使用基于ip也并不是什么好方法;
  27. 所以最常用的就是这个基于域名的虚拟主机了(申请一个域名相对与ip来说一般还是便宜很多的)

  

3、配置域名跳转

  1. 因为各种原因,你换了个域名;但你的老顾客并不知道或者并不想记你的新域名,这时候就可以通过域名跳转将其跳转到你的新域名了。
  2.  
  3. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  4. <VirtualHost *:80>
  5. DocumentRoot "/data/www"
  6. ServerName www.csrnew.com # 新域名
  7. ServerAlias www.csr.com # 别名(老域名)
  8.  
  9. # 方法一:开启rewrite,但会降低效率
  10. # mod_rewrite应该是最后手段,除非没有其他方法,否则不要轻易使用它(这句来自Apache2.4官方文档翻译的)
  11. # 首先还得开启rewrite_module模块
  12. [root@csr ~]# vim /usr/local/apache2/conf/httpd.conf 去掉注释
  13. #LoadModule rewrite_module modules/mod_rewrite.so
  14. [root@csr ~]# apachectl graceful
  15. # 检查是否已经加载
  16. [root@csr ~]# apachectl -M |grep -i 'rewrite'
  17. rewrite_module (shared)
  18. # 然后编辑vhost开始使用mod_rewrite模块
  19. # <IfModule mod_rewrite.c>
  20. # RewriteEngine on # 开启rewrite引擎
  21. # RewriteCond %{HTTP_HOST} ^www.csr.com$ [OR]
  22. # RewriteCond %{HTTP_HOST} ^csr.com$ [OR]
  23. # RewriteCond %{HTTP_HOST} ^csrnew.com$
  24. # RewriteRule ^/(.*)$ http://www.csrnew.com/$1 [R=301,L]
  25. # </IfModule>
  26.  
  27. # 方法二:简单高效,不需要开启rewrite模块
  28. <If "(%{HTTP_HOST} == 'www.csr.com') || (%{HTTP_HOST} == 'csr.com') || (%{HTTP_HOST} == 'csrnew.com')">
  29. Redirect permanent / http://www.csrnew.com/ # 301重定向
  30. </If>
  31. # 后面继续判断,比如其他人用www.nocsr.com域名绑定你的IP,加上这个他就访问不到了(403 Forbidden)
  32. # 自己测试的时候改hosts绑定IP即可,看看是不是403 Forbidden
  33. <ElseIf "!(%{HTTP_HOST} == 'www.csrnew.com') && !(%{HTTP_HOST} == 'localhost')">
  34. Require all denied
  35. </ElseIf>
  36. </VirtualHost>
  37.  
  38. # 使用curl测试,也可以在windows上打开浏览器->打开审查元素(按F12也可以打开)->Network查看,如图1
  39.  
  40. # curl -I 只请求http首部(使用HEAD方法) -x 使用HTTP代理proxy,结果见图2
  41. [root@csr ~]# curl -x127.0.0.1:80 www.test.com/static/image/common/logo.png -I

  

4、屏蔽恶意USER_AGENG

  1. 有时候可能会有一些恶意的USER_AGENG会一直爬你的网站,这时你需要屏蔽他们。
  2. (或者你不想让某些蜘蛛爬你的网站,同样可以使用USER_AGENG屏蔽他们)
  3.  
  4. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  5. # 方法一:使用mod_rewrite模块,并不推荐这个方法,除非你真的不懂其他方法了
  6. # 不加[OR]默认是表示AND,只允许匹配Firefox、Too Bot/1.0的访问,其他的一律拒绝,i忽略大小写,可以用m##代替//
  7. # <IfModule mod_rewrite.c>
  8. # RewriteEngine on
  9. # RewriteCond expr "!(%{HTTP_USER_AGENT} =~ /Firefox/i)" [NC]
  10. # RewriteCond expr "!(%{HTTP_USER_AGENT} =~ m#Too Bot/1.0#i)" [NC]
  11. # RewriteRule .* - [F]
  12. # </IfModule>
  13.  
  14. # 方法二:只允许匹配chrome,google的user_agent访问,其他的一律拒绝
  15. # <If "!(%{HTTP_USER_AGENT} =~ /google/i) && !(%{HTTP_USER_AGENT} =~ /chrome/i)">
  16. # Require all denied
  17. # </If>
  18.  
  19. # 开始测试,结果见下图
  20. [root@csr ~]# apachectl -t
  21. Syntax OK
  22. [root@csr~]# apachectl graceful
  23. [root@csr ~]# curl -x127.0.0.1:80 -A "baidu/1.0" www.test.com -I
  24. [root@csr ~]# curl -x127.0.0.1:80 -A "chrome/1.0" www.test.com -I

  

5、配置用户认证

  1. 对于一些重要内容,需要加一些安全措施,用户认证就可以在一定程度上保证它的安全。
  2.  
  3. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  4. # FilesMatch后面的文件是相对路径,而Files、Directory则使用绝对路径
  5. # (比如这里Directory则为:"/data/www/admin.php")
  6. <FilesMatch "admin.php">
  7. AllowOverride AuthConfig
  8. AuthName "csr: test Authentication."
  9. AuthType Basic
  10. AuthUserFile /data/.htpasswd # 基于用户的
  11. # AuthGroupFile /data/.htgpasswd # 基于组的
  12. # Require user csr # 只允许csr用户认证
  13. Require valid-user 允许有效用户认证
  14. # Require group group-csr 允许group-csr组认证
  15. </FilesMatch>
  16.  
  17. [root@csr ~]# apachectl -t
  18. Syntax OK
  19. [root@csr~]# apachectl graceful
  20.  
  21. # /usr/local/apache2/bin/htpasswd:用于创建用户认证的账户和密码
  22. # htpasswd第一次创建用户要用到-c 参数 第2次就不能加-c了,否则会覆盖前面已建立好的用户
  23. [root@csr ~]# /usr/local/apache2/bin/htpasswd -c /data/.htpasswd test
  24. # 提示输入密码然后完成
  25.  
  26. # 结果如图:

  

6、访问控制

  1. 访问控制,很基础但非常重要,很多安全设置都是靠他实现的:
  2. 比如某些企业只允许本局域网内的主机对某一特定目录的某类文件进行访问,外来的则全部禁止:
  3. <Directory /path/>
  4. <FilesMatch ".+\.(txt|doc)$">
  5. Require all denied
  6. Require ip 192.168.0.0/16
  7. </FilesMatch>
  8. </Directory>
  9.  
  10. Apache2.4以下版本的访问控制方法有点奇特,规则是这样的:
  11. -- 首先看Order后面是那个再前面
  12. -- 如果deny(allow)在前,那么看deny(allow) from,按顺序看完再看allow(deny)的
  13.  
  14. 例一、禁止5.5.5.56.6.6.6的:
  15. Order allow deny 也可以这样: Order allow deny
  16. Deny from 5.5.5.5 Allow from all
  17. Deny from 6.6.6.6 Deny from 6.6.6.6
  18. Allow from all Deny from 5.5.5.5
  19.  
  20. 例二、只允许5.5.5.56.6.6.6的:
  21. Order deny allow 也可以这样: Order deny allow
  22. Allow from 5.5.5.5 Deny from all
  23. Allow from 6.6.6.6 Allow from 6.6.6.6
  24. Deny from all Allow from 5.5.5.5
  25.  
  26. Apache2.4开始,取消这种奇怪的规则,改成更通俗易懂的:
  27. # Require all denied 全部禁止
  28. # Require all granted 全部允许
  29. # Require host www.csr.com
  30. # Require ip 192.168.1 192.168.2
  31. # Require ip 192.168.1/24
  32. ...
  33. 其他的等用到了再介绍吧

  

7、配置防盗链

  1. 有时候,你的网站莫名其妙的访问量变大,不要高兴的太早,有可能是被别人盗链了...
  2. 举个例子:比如我搭的这个discuz论坛,有人发了一个贴,里面全是些xxx图片视频;
  3. 然后将他网站上访问图片的地址重定向到我的discuz上,这样他的服务器就可以空闲出来了;
  4. 也就是说别人访问他网站的图片视频,消耗的确是你服务器的资源;
  5. 网络上访问xxx图片视频的人很多,这样就很有可能导致你的discuz负载超核挂了;
  6.  
  7. 解决这个问题的方法是配置下防盗链,让外来的盗不了链;
  8. (不过最本质的方法还是自己定期删除些违法的内容,没有这些违法内容别人也不会去盗链)
  9.  
  10. # 对视频图片压缩包等比较耗资源的做下防盗链
  11. SetEnvIfNoCase Referer "^http://www.csr.com" local_ref
  12. SetEnvIfNoCase Referer "^http://csr.com" local_ref
  13. <filesmatch "\.(mp3|mp4|zip|rar|jpg|gif|png)">
  14. # 2.4版本以下的
  15. 方法一:
  16. Order Deny,Allow
  17. Allow from env=local_ref
  18. Deny from all
  19. 方法二:
  20. Order Allow,Deny
  21. Allow from env=local_ref
  22.  
  23. 2.4版本以上,方法如下:
  24. Require all denied
  25. Require env local_ref
  26. </filesmatch>
  27.  
  28. # graceful下apache然后结果如下图:

8、配置静态文件缓存

  1. 配置静态缓存可以减少浏览器下载同一资源的次数,同时也可以减轻服务器的压力和节省带宽;
  2. 比如说浏览器请求一个csr.html,该html里面包含一张csr.png图片;
  3. 没有配置静态缓存则每次请求都要重新加载下csr.png图片;
  4. 而配置了静态缓存则在有效期内不会再请求该图片。
  5.  
  6. # 首先要开启mod_expires模块(取消前面的注释'#')
  7. [root@csr ~]# vim /usr/local/apache2/conf/httpd.conf
  8. LoadModule expires_module modules/mod_expires.so
  9. [root@csr ~]# apachectl -t
  10. Syntax OK
  11. # 检查模块是否正确开启
  12. [root@csr ~]# apachectl graceful
  13. [root@csr ~]# apachectl -M |grep expires_module
  14. expires_module (shared)
  15.  
  16. # 开始配置静态缓存
  17. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  18. <IfModule mod_expires.c>
  19. ExpiresActive on
  20. ExpiresByType image/gif "access plus 1 days"
  21. ExpiresByType image/jpeg "access plus 24 hours"
  22. ExpiresByType image/png "access plus 24 hours"
  23. ExpiresByType text/css "now plus 2 hour"
  24. ExpiresByType application/x-javascript "now plus 2 hours"
  25. ExpiresByType application/x-shockwave-flash "now plus 2 hours"
  26. ExpiresDefault "now plus 0 min"
  27. </IfModule>
  28.  
  29. # 打开浏览器,查看结果是否正确(304表示缓存了),缓存时间是否与配置的一致
  30. # 这里不能使用curl测试了,因为curl命令并不支持缓存功能,所以看不到304的

  

9、配置伪静态

  1. 对于某些更新频繁的网站来说,使用静态则不利与更新,而使用动态又不利于网络蜘蛛爬你的网站,于是,就产生了伪静态技术。
  2.  
  3. 伪静态只是使用rewrite模块改变了URL,实际上还是动态页面;
  4. 例如:你请求www.csr.com/a.html,服务器提取出uri,然后使用rewrite模块重写为a.php,再调用a.php将结果返回浏览器。
  5. 从这里的分析可以看出,伪静态实际上比动态还要耗资源,因为对每个请求,都必须使用rewrite重写URL
  6.  
  7. # 这里不能再使用前面的方法了,因为expr中只有匹配没有替换,所以,重写URL的话就只能使用rewrite模块了
  8. # 既然要使用rewrite模块,那么就要先开启才行:
  9. [root@csr ~]# vim /usr/local/apache2/conf/httpd.conf
  10. LoadModule rewrite_module modules/mod_rewrite.so
  11. [root@csr ~]# apachectl -t
  12. Syntax OK
  13. [root@csr ~]# apachectl graceful
  14. [root@csr ~]# apachectl -M |grep rewrite_module
  15. rewrite_module (shared)
  16.  
  17. # discuz伪静态配置
  18. # 自己一个个重写有点麻烦,这里就直接使用aminglinux里的discuz伪静态配置了
  19. # 规则很简单,提取整个查询字符串,然后将...\.html的重写成后面的形式
  20. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  21. RewriteCond %{QUERY_STRING} ^(.*)$
  22. RewriteRule ^/topic-(.+)\.html$ /portal.php?mod=topic&topic=$1&%1
  23. RewriteCond %{QUERY_STRING} ^(.*)$
  24. RewriteRule ^/article-([0-9]+)-([0-9]+)\.html$ /portal.php?mod=view&aid=$1&page=$2&%1
  25. RewriteCond %{QUERY_STRING} ^(.*)$
  26. RewriteRule ^/forum-(\w+)-([0-9]+)\.html$ /forum.php?mod=forumdisplay&fid=$1&page=$2&%1
  27. RewriteCond %{QUERY_STRING} ^(.*)$
  28. RewriteRule ^/thread-([0-9]+)-([0-9]+)-([0-9]+)\.html$ /forum.php?mod=viewthread&tid=$1&extra=page\%3D$3&page=$2&%1
  29. RewriteCond %{QUERY_STRING} ^(.*)$
  30. RewriteRule ^/group-([0-9]+)-([0-9]+)\.html$ /forum.php?mod=group&fid=$1&page=$2&%1
  31. RewriteCond %{QUERY_STRING} ^(.*)$
  32. RewriteRule ^/space-(username|uid)-(.+)\.html$ /home.php?mod=space&$1=$2&%1
  33. RewriteCond %{QUERY_STRING} ^(.*)$
  34. RewriteRule ^/blog-([0-9]+)-([0-9]+)\.html$ /home.php?mod=space&uid=$1&do=blog&id=$2&%1
  35. RewriteCond %{QUERY_STRING} ^(.*)$
  36. RewriteRule ^/archiver/(fid|tid)-([0-9]+)\.html$ /archiver/index.php?action=$1&value=$2&%1
  37. RewriteCond %{QUERY_STRING} ^(.*)$
  38. RewriteRule ^/([a-z]+[a-z0-9_]*)-([a-z0-9_\-]+)\.html$ /plugin.php?id=$1:$2&%1

  

10、自定义访问日志+错误日志格式

  1. 很多时候,apache默认的日志格式并不满足我们的需求,这时我们就需要自定义日志的格式了。
  2.  
  3. 例如:%h 记录访问者的IP,如果在web的前端有一层代理,那么%h其实是代理机器的IP
  4. 而%{X-FORWARDED-FOR}i 字段则会记录客户端真实的IP
  5.  
  6. 1、自定义访问日志(范围:全局、vhost都可以)
  7. # 在<IfModule log_config_module>模块里加入:(如下图)
  8. [root@csr ~]# vim /usr/local/apache2/conf/httpd.conf
  9. LogFormat "%h %{X-FORWARDED-FOR}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" csr
  10.  
  11. 2、自定义错误日志(范围:全局、vhost都可以)
  12. # 在<IfModule log_config_module>模块里加入:(如下图)
  13. [root@csr ~]# vim /usr/local/apache2/conf/httpd.conf
  14. ErrorLogFormat "[%t] [%l] [pid %P] %F: %E: [client %a] %M"
  15.  
  16. 根据个人的喜好可以配置成不同的格式,每个参数具体意义详见Apache2.4官方文档,这里再介绍内容就太多了。

  

11、排除无意义的日志

  1. 对于一般的请求图片、css等日志,是根本不需要记录的,反而还会增加日志的大小。
  2. 对于大访问量的图片网站,则更需要排除没意义的日志记录。
  3.  
  4. # 使用上面的自定义日志格式,同时不记录后缀为gif、jpg等日志
  5. [root@csr ~]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  6. SetEnvIf Request_URI ".*\.gif$" image-request
  7. SetEnvIf Request_URI ".*\.jpg$" image-request
  8. SetEnvIf Request_URI ".*\.png$" image-request
  9. SetEnvIf Request_URI ".*\.bmp$" image-request
  10. SetEnvIf Request_URI ".*\.swf$" image-request
  11. SetEnvIf Request_URI ".*\.js$" image-request
  12. SetEnvIf Request_URI ".*\.css$" image-request
  13. SetEnvIf Request_URI ".*\.ico$" image-request
  14. CustomLog "/tmp/1.log" csr env=!image-request

  

12、日志切割

  1. 随着时间的增加,服务器产生的日志文件会越来越大,如果不对日志进行分割;
  2. 那么删除日志只能整个删除,这样会丢失很多宝贵的信息。
  3. 而且分割日志对以后查看日志也更加方便了,删除的时候也可以选择保留最近一段时间的日志。
  4.  
  5. # 日志分割,需要用到apache自带的rotatelogs工具
  6. /usr/local/apache2/bin/rotatelogs
  7. rotatelogs --help 查看帮助信息可以让我们了解怎么分割日志
  8.  
  9. # 以天为单位进行分割,-l指定使用本地时间,86400单位为秒=1天
  10. # 配置时结合上面的“不记录没意义日志”,重复了这里就不加上了
  11. [root@csr bin]# vim /usr/local/apache2/conf/extra/httpd-vhosts.conf
  12. CustomLog "|/usr/local/apache2/bin/rotatelogs -l /tmp/access_%Y%m%d.log 86400" csr env=!image-request
  13. ErrorLog "|/usr/local/apache2/bin/rotatelogs -l /tmp/discuz_error_%Y%m%d.log 86400"

  

13、错误日志级别-差异记录

  1. 有时候网站有问题了,查看错误日志却没有发现上面异常,很可能是你定义的日志级别太高导致没有记录到;
  2. 这时就可以将级别(LogLevel)调成debug然后进行调试。
  3.  
  4. # LogLevel:作用范围:全局、vhost、Directory
  5. # 也就是说可以细到对每个目录进行差异记录,这很有用!
  6. # 比如你可以在总的httpd.conf里设置为error,然后在某些很重要的目录设置级别为debug;
  7. # 这样记录日志的时候就可以记录更多重要目录的信息而不会把其他目录也记录下来了。
  8.  
  9. # 例如全局设置为error,而passwd目录(里面存着很多人的银行卡密码)设置为debug
  10. [root@csr bin]# vim /usr/local/apache2/conf/httpd.conf
  11. ...
  12. LogLevel error
  13. ...
  14. <Directory "/data/zhifubao/passwd/">
  15. LogLevel debug
  16. </Directory>
  17.  
  18. # 下面列出LogLevel的所有级别(来自Apache2.4官方文档)
  19. Level Description Example
  20. emerg Emergencies - system is unusable. "Child cannot open lock file. Exiting"
  21. alert Action must be taken immediately. "getpwuid: couldn't determine user name from uid"
  22. crit Critical Conditions. "socket: Failed to get a socket, exiting child"
  23. error Error conditions. "Premature end of script headers"
  24. warn Warning conditions. "child process 1234 did not exit, sending another SIGHUP"
  25. notice Normal but significant condition. "httpd: caught SIGBUS, attempting to dump core in ..."
  26. info Informational. "Server seems busy, (you may need to increase StartServers, or Min/MaxSpareServers)..."
  27. debug Debug-level messages "Opening config file ..."
  28. trace1 Trace messages "proxy: FTP: control connection complete"
  29. trace2 Trace messages "proxy: CONNECT: sending the CONNECT request to the remote proxy"
  30. trace3 Trace messages "openssl: Handshake: start"
  31. trace4 Trace messages "read from buffered SSL brigade, mode 0, 17 bytes"
  32. trace5 Trace messages "map lookup FAILED: map=rewritemap key=keyname"
  33. trace6 Trace messages "cache lookup FAILED, forcing new map lookup"
  34. trace7 Trace messages, dumping large amounts of data "| 0000: 02 23 44 30 13 40 ac 34 df 3d bf 9a 19 49 39 15 |"
  35. trace8 Trace messages, dumping large amounts of data "| 0000: 02 23 44 30 13 40 ac 34 df 3d bf 9a 19 49 39 15 |"

  

14、开启server-info、server-status

  1. 对于服务器的状态和配置信息,Apache也提供了一个方法:通过server-infoserver-status查看;
  2. 通过查看这两个我们可以很方便的了解到Apache当前的详细状态与配置信息,很好用,不过必须加上访问控制,否则就可能让外来人看到你的配置信息了。
  3. 这也很简单,根据前面所讲的只允许本局域网内的主机查看,更细致点,只允许特定几台主机查看,这样就不用担心会泄露了。
  4.  
  5. # ...老是直接教怎么做却没有告诉你们方法学了可能也是白学,拿这个为例:
  6. 1、首先server-infoserver-status的信息在httpd-info.conf里有介绍,查看该文件
  7. [root@csr bin]# vim /usr/local/apache2/conf/extra/httpd-info.conf
  8.  
  9. 2、里面有这样的三行:
  10. # Required modules: mod_authz_core, mod_authz_host,
  11. # mod_info (for the server-info handler),
  12. # mod_status (for the server-status handler)
  13. 说明他们依赖这些模块,要开启则必须先加载这些模块...加载这些模块
  14. (至于加载模块前面已经讲过多次了,取消LoadModule前面的注释然后grep检查是否正确加载即可)
  15.  
  16. 3、接着往下看:with the URL of http://servername/server-status
  17. 这个介绍了配置好后怎么在浏览器里打开他们
  18.  
  19. 4、继续:发现它已经给了大致模版了,编辑vhost文件将其加入,然后修改下访问控制,例如status
  20. <Location /server-status>
  21. SetHandler server-status
  22. Require all denied
  23. Require ip 127.0.0.1
  24. Require ip x.x.x.x
  25. ...
  26. </Location>
  27.  
  28. 5gracefulApache,然后浏览器测试,发现提示not found
  29. 仔细想想httpd-info.conf配置文件和虚拟主机配置一样在./conf/extra/下,
  30. 这下面的配置文件想要生效必须在httpd.conf里取消Include ...的注释;
  31.  
  32. 6、于是,编辑httpd.conf,开启httpd-info.conf配置文件
  33. # Real-time info on requests and configuration
  34. # Include conf/extra/httpd-info.conf
  35.  
  36. 7、再次测试,发现可以查看了(结果见下图)
  37.  
  38. 8、从server-infoserver-status可以看到很多有用的信息
  39. 比如status可以看到等待连接的请求有多少个、cpu的使用率、空闲(忙碌)的线程数等等
  40. info中可以很方便的看到某一模块在哪些行被配置使用,点击模块还会跳转到该模块下面...
  41. 具体的自己去试试吧

  

15、 HTTP/1.1 状态码

  1. --来自HTTP/1.1RFC文档
  2. -1xx: 报告的 - 接收到请求,继续进程.
  3. -2xx 成功 - 步骤成功接收,被理解,并被接受
  4. -3xx 重发 - 为了完成请求,必须采取进一步措施.
  5. -4xx 客户端出错 - 请求包括错的顺序或不能完成.
  6. -5xx 服务器出错 - 服务器无法完成显然有效的请求.

  

16、ErrorDocument+Alias

  1. 1、自定义404 not found 页面
  2. # vim vhost.conf加入
  3. ErrorDocument 404 "/csrtest/not_found.html"
  4. # cat not_found.html
  5. <html><title>404</title><body>...not found...</body></html>
  6. 这样以后只要是404 not found就会显示not_found.html的内容了
  7.  
  8. 2Alias URL路径 文件系统的绝对路径
  9. # Alias指令使文档可以被存储在DocumentRoot以外的本地文件系统中
  10.  
  11. # 下面的是将URL/csr2映射到系统的/data/www/csrtest下
  12. # 例如请求www.csr110.xyz/csr2/1.php,apache则会读取/data/www/csrtest/1.php的内容
  13. # Alias /csr2 /data/www/csrtest

  

  1.  

Apache2.4配置总结(转)的更多相关文章

  1. ubuntu 启用apache2 虚拟机配置

    Ubuntu 启用apache2 虚拟机配置 http://jingyan.baidu.com/article/5d6edee20b78e999eadeecf7.html

  2. ubuntu14.04安装 Apache2 并配置https

    一.安装 Apache2 sudo apt-get update sudo apt-get install apache2 安装完apache2,默认根目录在/var/www/html 下,点击其下的 ...

  3. 转 PHP5+APACHE2.2配置

    初学php,配置起来老出问题,找了篇不错的帖子,一试就通过了,所以就顺带着转了过来. 不过在我安装phpMyAdmin的时候还是发现这篇文章的一个问题,就是php.ini如果放在system32下,启 ...

  4. apache2.4配置多个端口对应多个目录

    文件 /usr/local/apache/conf/extra/httpd-vhosts.conf 的内容如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NameVir ...

  5. Ubuntu下的apache2的配置过程

    参考apache2的中文文档:http://httpd.apache.org/docs/2.4/ 安装apache2: apt-get install apache2 安装apache2doc文档:a ...

  6. Ubuntu下apache2安装配置(内含数字证书配置)

    Ubuntu下apache2安装配置(内含数字证书配置)安装命令:sudo apt-get updatesudo apt-get install apache2 配置1.查看apache2安装目录命令 ...

  7. ubuntu 安装apache2并配置cgi,搭建mimetex转化公式图片的服务

    一.Apache的安装 在终端输入: sudo apt-get install apache2 二.启动.停止Apache服务 Apache的启动和停止文件是:/etc/init.d/apache2 ...

  8. ubuntu下apache2 安装 配置 卸载 CGI设置 SSL设置

    一.安装.卸载apache2      apache2可直接用命令安装           sudo apt-get install apache2      卸载比较麻烦,必须卸干净,否则会影响ap ...

  9. apache2.4配置虚拟目录

    刚开始学习,跟着韩顺平老师的视频课件学习ing~ 这是自己在配置虚拟目录时遇到的问题以及解决办法,记录下来~ ---------------------------分割线君-------------- ...

  10. ubuntu apache2 ssl配置

    Ubuntu下HTTPS配置非常简单,对大部分用户而言,使用普通的自签名证书,只需按照步骤进行就可以了,无需了解密钥.证书的更多知识,更深的背景 知识还有RSA算法.DES算法.X509规范.CA机构 ...

随机推荐

  1. BeyondCompare

    BeyondCompare可对文本,照片,文件夹,注册表等等进行比较 在git看不清楚版本和改动项的时候,直接将生产上的包拉下来和即将发布的包,作对比.

  2. Codeforces 899E - Segments Removal

    899E - Segments Removal 思路:priority_queue+pair 代码: #include<bits/stdc++.h> using namespace std ...

  3. TimeZone 时区 (JS .NET JSON MYSQL) + work week 闰年

    来源参考 : http://www.cnblogs.com/qiuyi21/archive/2008/03/04/1089456.html 来源参考 : http://walkingice.blogs ...

  4. android--------微信 Tinker 热修复 (一)

    什么是热修复 热修复补丁(hotfix),又称为patch,指能够修复软件漏洞的一些代码,是一种快速.低成本修复产品软件版本缺陷的方式. 热修复有多种,如:Tinker ,QZone,Andfix, ...

  5. ural Ambitious Experiment 树状数组

    During several decades, scientists from planet Nibiru are working to create an engine that would all ...

  6. SSH 本地端口转发

    有时,绑定本地端口还不够,还必须指定数据传送的目标主机,从而形成点对点的"端口转发".为了区别后文的"远程端口转发",我们把这种情况称为"本地端口转发 ...

  7. CSS3动画和JS动画的比较

    前言 之前有被问到一个问题,css3动画和js动画性能谁更好,为什么.据我的经验,当然觉得css3动画性能更好,至于为什么一时还真答不上来,所以特意查了一下资料总结一波. JS动画 优点: js动画控 ...

  8. Automatic Login Using sshpass

    #! /bin/bash user=root password=12345678 remote_ip=192.168.3.140 sshpass -p $password ssh $user@$rem ...

  9. poj 1163 The Triangle 搜索 难度:0

    The Triangle Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 37931   Accepted: 22779 De ...

  10. CF 459A && 459B && 459C && 459D && 459E

    http://codeforces.com/contest/459 A题 Pashmak and Garden 化简化简水题,都告诉平行坐标轴了,数据还出了对角线,后面两个点坐标给的范围也不错 #in ...