version 0.2.1
[fms.git] / libs / shttpd / config.h
1 /*
2  * Copyright (c) 2004-2005 Sergey Lyubka <valenok@gmail.com>
3  * All rights reserved
4  *
5  * "THE BEER-WARE LICENSE" (Revision 42):
6  * Sergey Lyubka wrote this file.  As long as you retain this notice you
7  * can do whatever you want with this stuff. If we meet some day, and you think
8  * this stuff is worth it, you can buy me a beer in return.
9  */
10
11 #ifndef CONFIG_HEADER_DEFINED
12 #define CONFIG_HEADER_DEFINED
13
14 #define VERSION         "1.39"          /* Version                      */
15 #define CONFIG_FILE     "shttpd.conf"   /* Configuration file           */
16 #define HTPASSWD        ".htpasswd"     /* Passwords file name          */
17 #define URI_MAX         16384           /* Default max request size     */
18 #define LISTENING_PORTS "80"            /* Default listening ports      */
19 #define INDEX_FILES     "index.html,index.htm,index.php,index.cgi"
20 #define CGI_EXT         "cgi,pl,php"    /* Default CGI extensions       */
21 #define SSI_EXT         "shtml,shtm"    /* Default SSI extensions       */
22 #define REALM           "mydomain.com"  /* Default authentication realm */
23 #define DELIM_CHARS     " ,"            /* Separators for lists         */
24 #define EXPIRE_TIME     3600            /* Expiration time, seconds     */
25 #define ENV_MAX         4096            /* Size of environment block    */
26 #define CGI_ENV_VARS    64              /* Maximum vars passed to CGI   */
27
28 #endif /* CONFIG_HEADER_DEFINED */