mrtg-webserver.txt
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:2k
源码类别:

SNMP编程

开发平台:

C/C++

  1. MRTG-WEBSERVER(1)              mrtg             MRTG-WEBSERVER(1)
  2. NNAAMMEE
  3.        mrtg-webserver - hints for web server configuration
  4. SSYYNNOOPPSSIISS
  5.        If you want people to actually see the results of your
  6.        network monitoring efforts you will need a webserver.
  7.        This document lists some configuration hints for web-
  8.        servers. Contributions welcome.
  9. AAPPAACCHHEE
  10.        CCoonnffiigguurriinngg mmoodd__eexxppiirree
  11.        A big issue with mrtg monitoring data is the expiry time.
  12.        All these nice graphs you can create are only valid for a
  13.        short time.  If you do not take special action some web-
  14.        browsers will not notice this and you may end up with peo-
  15.        ple seeing old data because of caching issues.
  16.        The apache module mod_expire allows you to setup special
  17.        expiry properties for individual file.
  18.        Here is an example for how this may look for an mrtg web
  19.        directory.  The configuration directives can be stored
  20.        into a _._h_t_a_c_c_e_s_s file.
  21.         ############################################################
  22.         # Example .htaccess for use with apache-1.2 and mod_expire.
  23.         # (mod_expire come with apache-1.2 but you have to explicitly
  24.         # activate it when compiling the httpd ...)
  25.         #############################################################
  26.         #
  27.         <Files "*-day.png">
  28.         ExpiresActive On                  # enable expirations
  29.         # five minutes
  30.         ExpiresDefault M300
  31.         </Files>
  32.         <Files "*-week.png">
  33.         ExpiresActive On
  34.         ExpiresDefault M1800
  35.         </Files>
  36.         <Files "*-month.png">
  37.         ExpiresActive On
  38.         ExpiresDefault M7200
  39.         </Files>
  40.         <Files "*-year.png">
  41.         ExpiresActive On
  42.         ExpiresDefault M86400
  43.         </Files>
  44.         <Files "*.html">
  45.         ExpiresActive On
  46.         ExpiresDefault M300
  47.         </Files>
  48.         # index.html is not automatically generated
  49.         <Files "index.html">
  50.         ExpiresActive Off
  51.         </Files>
  52. AAUUTTHHOORR
  53.        Unknown
  54. 2.13.2                      2006-02-03          MRTG-WEBSERVER(1)