sameer 97/04/25 15:02:45
Modified: src Configuration.tmpl
Log:
Reorder configuration.tmpl so that url-munging is in the right order
Reviewed by: Roy Fielding, Dean Gaudet, Chuck Murcko
Submitted by: Sameer Parekh
Revision Changes Path
1.59 +20 -11 apache/src/Configuration.tmpl
Index: Configuration.tmpl
===================================================================
RCS file: /export/home/cvs/apache/src/Configuration.tmpl,v
retrieving revision 1.58
retrieving revision 1.59
diff -c -C3 -r1.58 -r1.59
*** Configuration.tmpl 1997/04/15 20:00:20 1.58
--- Configuration.tmpl 1997/04/25 22:02:44 1.59
***************
*** 138,147 ****
Module dir_module mod_dir.o
Module cgi_module mod_cgi.o
Module userdir_module mod_userdir.o
- Module alias_module mod_alias.o
Module env_module mod_env.o
Module config_log_module mod_log_config.o
## The asis module implemented ".asis" file types, which allow the embedding
## of HTTP headers at the beginning of the document. mod_imap handles
internal
## imagemaps (no more cgi-bin/imagemap/!). mod_actions is used to specify
--- 138,166 ----
Module dir_module mod_dir.o
Module cgi_module mod_cgi.o
Module userdir_module mod_userdir.o
Module env_module mod_env.o
Module config_log_module mod_log_config.o
+
+ ##
+ ## The next three modules here are URL manipulation
+ ##
+
+ ## Finally, the proxy module. It's not as complete as it could be yet.
+ ## But it's getting there.
+
+ # Module proxy_module modules/proxy/libproxy.a
+
+ ##
+ ## Alias module
+
+ Module alias_module mod_alias.o
+
+ ## mod_rewrite allows for powerful URI-to-filename mapping, using
+ ## regular expressions.
+
+ # Module rewrite_module mod_rewrite.o
+
## The asis module implemented ".asis" file types, which allow the embedding
## of HTTP headers at the beginning of the document. mod_imap handles
internal
## imagemaps (no more cgi-bin/imagemap/!). mod_actions is used to specify
***************
*** 161,171 ****
# Module agent_log_module mod_log_agent.o
# Module referer_log_module mod_log_referer.o
- ## mod_rewrite allows for powerful URI-to-filename mapping, using
- ## regular expressions.
-
- # Module rewrite_module mod_rewrite.o
-
## cern_meta mimics the behavior of the CERN web server with regards to
## metainformation files.
--- 180,185 ----
***************
*** 243,250 ****
## the file modules/example/README for details.
# Module example_module modules/example/mod_example.o
-
- ## Finally, the proxy module. It's not as complete as it could be yet.
- ## But it's getting there.
-
- # Module proxy_module modules/proxy/libproxy.a
--- 257,259 ----