Changeset 1744
- Timestamp:
- 08/06/08 00:38:18 (5 months ago)
- Files:
-
- cherokee/trunk/admin/PageEntry.py (modified) (1 diff)
- cherokee/trunk/doc/Makefile.am (modified) (3 diffs)
- cherokee/trunk/doc/TOC.txt (modified) (1 diff)
- cherokee/trunk/doc/config_virtual_servers.txt (modified) (6 diffs)
- cherokee/trunk/doc/config_virtual_servers_rule.txt (added)
- cherokee/trunk/doc/config_walkthrough.txt (modified) (1 diff)
- cherokee/trunk/doc/entry.txt (deleted)
- cherokee/trunk/doc/index.txt (deleted)
- cherokee/trunk/doc/modules_loggers.txt (moved) (moved from cherokee/trunk/doc/loggers.txt)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
cherokee/trunk/admin/PageEntry.py
r1725 r1744 11 11 DEFAULT_RULE_WARNING = 'The default match ought not to be changed.' 12 12 13 NOTE_DOCUMENT_ROOT = 'Allow to specify an alternative document root path.'13 NOTE_DOCUMENT_ROOT = 'Allows to specify an alternative document root path.' 14 14 NOTE_HANDLER = 'How the connection will be handled.' 15 15 NOTE_HTTPS_ONLY = 'Enable to allow access to the resource only by https.' cherokee/trunk/doc/Makefile.am
r1740 r1744 31 31 config_general.html \ 32 32 config_virtual_servers.html \ 33 config_virtual_servers_rule.html \ 33 34 config_encoding.html \ 34 35 config_icons.html \ … … 38 39 cookbook_authentication.html \ 39 40 cookbook_ssl.html \ 40 index.html \41 loggers.html \42 entry.html \43 41 modules_balancers_round_robin.html \ 44 42 modules_encoders_gzip.html \ … … 51 49 modules_handlers_cgi.html \ 52 50 modules_handlers_scgi.html \ 51 modules_loggers.html \ 53 52 modules_loggers_combined.html \ 54 53 modules_loggers_ncsa.html \ cherokee/trunk/doc/TOC.txt
r1740 r1744 27 27 . link:config_general.html[General] 28 28 . link:config_virtual_servers.html[Virtual servers] 29 - link:config_virtual_servers_rule.html[Rule Options] 29 30 . link:config_encoding.html[Encoding] 30 31 . link:config_icons.html[Icons] cherokee/trunk/doc/config_virtual_servers.txt
r1740 r1744 15 15 16 16 Three main options are accessible through this menu: 17 17 18 . Virtual Server List 19 18 20 . Add new Virtual Server 21 19 22 . Clone Virtual Server 20 23 … … 120 123 121 124 This sections allows to define a set of rules to define how the server 122 should handle the different requests. These rules can be defined based 123 on the directory that the request targets, the extension of the file 124 that it is requesting, or a regular expression that may match with the 125 request: 125 should handle the different requests. A summary of the existing rules is 126 presented, containig several fields of information: 127 128 . *Target*: web target of the rule, be it a path, a file type, etc. 129 130 . *Type*: Rule type. The will be explained in the following 131 paragraphs. 132 133 . *Handler*: The handler that manages the requests that match this 134 rule. Read on for further details. 135 136 . *Auth*: Indicates if authentication is used for this rule. This 137 can be set up through the link:config_virtual_servers_rule.html[Rule 138 Entry] menu. 139 140 . *Final*: If this flag is present it means that no other rules will 141 be applied after this one, even if the request also matches other 142 rules with lower priority. 143 144 These rules can be defined based on the directory that the request 145 targets, the extension of the file that it is requesting, or a regular 146 expression that may match the request. This is the list of available 147 rule types: 126 148 127 149 * **Directory**: The entry Directory encloses a group of directives which will … … 169 191 170 192 Each of these behavior rules must specify which is the handler that 171 the server should use to reply t he requests that matchesthe rule.172 Handler are the modules that generate the information with which the193 the server should use to reply to the requests that match the rule. 194 Handlers are the modules that generate the information with which the 173 195 server responds a client's request. By default Cherokee provides a 174 196 number of them: 175 197 176 ---- 198 199 ********************************************************************** 177 200 - link:modules_handlers_common.html[common] - **List & Send** 178 201 … … 224 247 Implements an administration interface to work with 225 248 link:bundle_cherokee-tweak.html[cherokee-tweak]. 226 ---- 249 ********************************************************************** 250 251 252 The selection of any one of the rule targets will offer new 253 configuration options through the 254 link:config_virtual_servers_rule.html[Rule Entry] menu. 255 256 Each of the mentioned handlers can be fine-tuned through that 257 menu. Refer to each handler's documentation if you are interested in 258 the available settings. 227 259 228 260 … … 243 275 244 276 . Default errors 277 245 278 . Custom redirections 279 246 280 . Closest match 247 281 … … 266 300 267 301 * Destination: File, syslog, program execution and standard error output. 302 268 303 * Format: Combined (Apache compatible), NCSA or W3C 269 304 cherokee/trunk/doc/config_walkthrough.txt
r1740 r1744 1 Walktrhough 2 ----------- 1 Configuration Quickstart 2 ------------------------ 3 3 4 4