1# Default Host - Configuration
2# ============================
3# Here the variable principals of the program are defined in respect
4# to the configuration of the different types of directives.
5
6[HOST]
7    # ServerName:
8    # -----------
9    # Allow you to set a host and domain name (e.g monkey.linuxchile.cl). If
10    # you are working in a local network just set your IP address or if you
11    # are working like localhost set your loopback address (127.0.0.1).
12
13    ServerName @MK_VH_SERVERNAME@
14
15    # DocumentRoot:
16    # -------------
17    # This variable corresponds to the location of the main server directory
18    # of the web pages, where the files of your site are located.
19    #
20    # Example:
21    #      DocumentRoot /home/krypton/htdocs
22
23    DocumentRoot @MK_PATH_WWW@
24
25    # Redirect:
26    # ---------
27    # Under specific conditions, you may want the server performs a HTTP
28    # redirect when this Virtual Host is reach. If that is the case, append
29    # to the Redirect key the value of the address where to redirect the
30    # HTTP client.
31    #
32    # Redirect http://monkey-project.com
33
34[LOGGER]
35    # AccessLog:
36    # ----------
37    # Registration file of correct request.
38
39    AccessLog @MK_PATH_LOG@/access.log
40
41    # ErrorLog:
42    # ---------
43    # Registration file of incorrect request.
44
45    ErrorLog @MK_PATH_LOG@/error.log
46
47[ERROR_PAGES]
48    404  404.html
49
50[HANDLERS]
51    # FastCGI
52    # =======
53    # Match /.*\.php fastcgi
54
55    # CGI
56    # ===
57    # Match /cgi-bin/.*\.cgi cgi
58