]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Remerge proxy configuration. Tally: of 9 votes;
authorWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 22 Oct 2001 12:46:29 +0000 (12:46 +0000)
committerWilliam A. Rowe Jr <wrowe@apache.org>
Mon, 22 Oct 2001 12:46:29 +0000 (12:46 +0000)
  Majority for segregating mod_ssl
  Minority for segregating mod_proxy

  Also remove a lingering bit of ldap config from httpd-std.conf

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@91631 13f79535-47bb-0310-9956-ffa450edef68

Makefile.in
Makefile.win
STATUS
docs/conf/httpd-nw.conf
docs/conf/httpd-std.conf
docs/conf/httpd-win.conf
docs/conf/proxy-std.conf [deleted file]

index d79898ba987cd07a6e5e82f163720f14517dab15..6cb3175409aba2db9fb72f4cd21776f4bf7edf26 100644 (file)
@@ -34,7 +34,7 @@ install-conf:
        for i in mime.types magic; do \
                $(INSTALL_DATA) $$i $(sysconfdir); \
        done; \
-       for i in *-std* ldap.conf proxy.conf ssl.conf; do \
+       for i in *-std* ssl.conf; do \
                [ -f $$i ] || continue; \
                ( \
                        n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \
index f5898f5bf3f8b6aa295802727caeeeeb16a898dc..7fed2f8191ff398123c93dba93cd60fcebb22b97 100644 (file)
@@ -457,21 +457,6 @@ _install:
 <<
        if not exist "$(INSTDIR)\conf\ssl.conf" \
             copy "$(INSTDIR)\conf\ssl.default.conf" "$(INSTDIR)\conf\ssl.conf"
-       copy docs\conf\proxy-std.conf "$(INSTDIR)\conf\proxy.default.conf"
-       -awk -f <<script.awk "docs\conf\proxy-std.conf" "$(INSTDIR)\conf\proxy.default.conf" "$(INSTDIR)"
-    BEGIN { 
-        srcfl = ARGV[1];
-        dstfl = ARGV[2];
-        serverroot = ARGV[3];
-        gsub( /\\/, "/", serverroot );
-        while ( ( getline < srcfl ) > 0 ) {
-            gsub( /@@ServerRoot@@/, serverroot );
-            print $$0 > dstfl;
-        }
-    }
-<<
-       if not exist "$(INSTDIR)\conf\proxy.conf" \
-            copy "$(INSTDIR)\conf\proxy.default.conf" "$(INSTDIR)\conf\proxy.conf"
        awk -f <<script.awk "support\dbmmanage.in" >"$(INSTDIR)\bin\dbmmanage.pl"
     { if ( $$0 ~ /^BEGIN { @AnyDBM_File::/ ) {
           sub( /ISA = qw\(.*\)/, "ISA = qw(SDBM_File)" ); 
diff --git a/STATUS b/STATUS
index 53b19a28266015f4d53fe6a17e5294577cc01a4b..739d20ac5a294ec04d962baa43bd2e0090e5f468 100644 (file)
--- a/STATUS
+++ b/STATUS
@@ -1,5 +1,5 @@
 APACHE 2.0 STATUS:                                             -*-text-*-
-Last modified at [$Date: 2001/10/19 06:11:52 $]
+Last modified at [$Date: 2001/10/22 12:46:29 $]
 
 Release:
 
@@ -35,11 +35,6 @@ on related projects:
 
 RELEASE SHOWSTOPPERS:
 
-    * The recent split of proxy.conf and ssl.conf, good or bad?
-        Split ssl.conf & proxy.conf: +1 OtherBill, Aaron, Ken
-        Split out ssl.conf only:     +1 Ryan, BrianH, Jim
-        Everything in httpd.conf:    +1 Cliff, Justin, Joshua
-
     * If any request gets to the core handler, without a flag that this 
       r->filename was tested by dir/file_walk, we need to 500 at the very 
       end of the ap_process_request_internal() processing.  This provides
index d9f0c75da65f260a907dc74be5b7542195dadd27..c5724fafcb0d0fae94a127f81f381b1622e81c47 100644 (file)
@@ -857,6 +857,41 @@ BrowserMatch "JDK/1\.0" force-response-1.0
 #    Allow from .@@DomainName@@
 #</Location>
 
+#
+# Proxy Server directives. Uncomment the following lines to
+# enable the proxy server:
+#
+#<IfModule mod_proxy.c>
+#ProxyRequests On
+#
+#<Proxy *>
+#    Order deny,allow
+#    Deny from all
+#    Allow from .your_domain.com
+#</Proxy>
+
+#
+# Enable/disable the handling of HTTP/1.1 "Via:" headers.
+# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
+# Set to one of: Off | On | Full | Block
+#
+#ProxyVia On
+
+#
+# To enable the cache as well, edit and uncomment the following lines:
+# (no cacheing without CacheRoot)
+#
+#CacheRoot "@@ServerRoot@@/proxy"
+#CacheSize 5
+#CacheGcInterval 4
+#CacheMaxExpire 24
+#CacheLastModifiedFactor 0.1
+#CacheDefaultExpire 1
+#NoCache a_domain.com another_domain.edu joes.garage_sale.com
+
+#</IfModule>
+# End of proxy directives.
+
 #
 # Bring in additional module-specific configurations
 #
@@ -864,9 +899,6 @@ BrowserMatch "JDK/1\.0" force-response-1.0
     Include conf/ssl.conf
 </IfModule>
 
-<IfModule mod_proxy.c>
-    Include conf/proxy.conf
-</IfModule>
 
 ### Section 3: Virtual Hosts
 #
index 4fbe1981abbee80721599ac926686b270a90438e..93d74498160e4362376254b00ec7c6805a0face6 100644 (file)
@@ -925,6 +925,41 @@ BrowserMatch "JDK/1\.0" force-response-1.0
 #    Allow from .your_domain.com
 #</Location>
 
+#
+# Proxy Server directives. Uncomment the following lines to
+# enable the proxy server:
+#
+#<IfModule mod_proxy.c>
+#ProxyRequests On
+#
+#<Proxy *>
+#    Order deny,allow
+#    Deny from all
+#    Allow from .your_domain.com
+#</Proxy>
+
+#
+# Enable/disable the handling of HTTP/1.1 "Via:" headers.
+# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
+# Set to one of: Off | On | Full | Block
+#
+#ProxyVia On
+
+#
+# To enable the cache as well, edit and uncomment the following lines:
+# (no cacheing without CacheRoot)
+#
+#CacheRoot "@@ServerRoot@@/proxy"
+#CacheSize 5
+#CacheGcInterval 4
+#CacheMaxExpire 24
+#CacheLastModifiedFactor 0.1
+#CacheDefaultExpire 1
+#NoCache a_domain.com another_domain.edu joes.garage_sale.com
+
+#</IfModule>
+# End of proxy directives.
+
 #
 # Bring in additional module-specific configurations
 #
@@ -932,14 +967,6 @@ BrowserMatch "JDK/1\.0" force-response-1.0
     Include conf/ssl.conf
 </IfModule>
 
-<IfModule mod_proxy.c>
-    Include conf/proxy.conf
-</IfModule>
-
-<IfModule mod_ldap.c>
-    Include conf/ldap.conf
-</IfModule>
-
 
 ### Section 3: Virtual Hosts
 #
index 28ba934923969b51ed7c135c9ed9bae4f1d8f117..49bfe76632ccebd814b3b3bee7470c24527620a3 100644 (file)
@@ -848,6 +848,41 @@ BrowserMatch "JDK/1\.0" force-response-1.0
 #    Allow from .@@DomainName@@
 #</Location>
 
+#
+# Proxy Server directives. Uncomment the following lines to
+# enable the proxy server:
+#
+#<IfModule mod_proxy.c>
+#ProxyRequests On
+#
+#<Proxy *>
+#    Order deny,allow
+#    Deny from all
+#    Allow from .your_domain.com
+#</Proxy>
+
+#
+# Enable/disable the handling of HTTP/1.1 "Via:" headers.
+# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
+# Set to one of: Off | On | Full | Block
+#
+#ProxyVia On
+
+#
+# To enable the cache as well, edit and uncomment the following lines:
+# (no cacheing without CacheRoot)
+#
+#CacheRoot "@@ServerRoot@@/proxy"
+#CacheSize 5
+#CacheGcInterval 4
+#CacheMaxExpire 24
+#CacheLastModifiedFactor 0.1
+#CacheDefaultExpire 1
+#NoCache a_domain.com another_domain.edu joes.garage_sale.com
+
+#</IfModule>
+# End of proxy directives.
+
 #
 # Bring in additional module-specific configurations
 #
@@ -855,10 +890,6 @@ BrowserMatch "JDK/1\.0" force-response-1.0
     Include conf/ssl.conf
 </IfModule>
 
-<IfModule mod_proxy.c>
-    Include conf/proxy.conf
-</IfModule>
-
 
 ### Section 3: Virtual Hosts
 #
diff --git a/docs/conf/proxy-std.conf b/docs/conf/proxy-std.conf
deleted file mode 100644 (file)
index 62b56ce..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-#
-# Proxy Server directives. Uncomment the following lines to
-# enable the proxy server:
-#
-#<IfModule mod_proxy.c>
-#ProxyRequests On
-#
-#<Proxy *>
-#    Order deny,allow
-#    Deny from all
-#    Allow from .your_domain.com
-#</Proxy>
-
-#
-# Enable/disable the handling of HTTP/1.1 "Via:" headers.
-# ("Full" adds the server version; "Block" removes all outgoing Via: headers)
-# Set to one of: Off | On | Full | Block
-#
-#ProxyVia On
-
-#
-# To enable the cache as well, edit and uncomment the following lines:
-# (no cacheing without CacheRoot)
-#
-#CacheRoot "@@ServerRoot@@/proxy"
-#CacheSize 5
-#CacheGcInterval 4
-#CacheMaxExpire 24
-#CacheLastModifiedFactor 0.1
-#CacheDefaultExpire 1
-#NoCache a_domain.com another_domain.edu joes.garage_sale.com
-
-#</IfModule>
-# End of proxy directives.
-