cvs commit: apache-1.3/htdocs/manual/misc howto.html

1999-07-30 Thread rse
rse 99/07/30 02:51:03

  Modified:htdocs/manual/misc howto.html
  Log:
  Fix PR#4720
  
  Revision  ChangesPath
  1.12  +3 -2  apache-1.3/htdocs/manual/misc/howto.html
  
  Index: howto.html
  ===
  RCS file: /home/cvs/apache-1.3/htdocs/manual/misc/howto.html,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- howto.html1999/04/21 05:01:24 1.11
  +++ howto.html1999/07/30 09:51:01 1.12
  @@ -85,8 +85,9 @@
   
   #!/usr/local/bin/perl
   
  -print "Status: 302 Moved Temporarily\r
  -Location: http://www.some.where.else.com/\r\n\r\n";;
  +print "Status: 302 Moved Temporarily\r\n" .
  +  "Location: http://www.some.where.else.com/\r\n"; .
  +  "\r\n";
   
   
   
  
  
  


cvs commit: apache-1.3/htdocs/manual/misc howto.html

1999-04-21 Thread dgaudet
dgaudet 99/04/20 22:01:25

  Modified:htdocs/manual/misc howto.html
  Log:
  missing / in example
  
  PR:   3631
  Submitted by: Sebastian Andersson <[EMAIL PROTECTED]>
  
  Revision  ChangesPath
  1.11  +1 -1  apache-1.3/htdocs/manual/misc/howto.html
  
  Index: howto.html
  ===
  RCS file: /home/cvs/apache-1.3/htdocs/manual/misc/howto.html,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- howto.html1998/10/23 15:14:14 1.10
  +++ howto.html1999/04/21 05:01:24 1.11
  @@ -77,7 +77,7 @@
   
   Here's how to redirect all requests to a script... In the server
   configuration file,
  -ScriptAlias / /usr/local/httpd/cgi-bin/redirect_script
  +ScriptAlias / 
/usr/local/httpd/cgi-bin/redirect_script/
   
   
   and here's a simple perl script to redirect requests:
  
  
  


cvs commit: apache-1.3/htdocs/manual/misc howto.html

1998-10-23 Thread coar
coar98/10/23 08:14:14

  Modified:htdocs/manual/misc howto.html
  Log:
Add a 'howto' item submitted in April of 1998 (ouch!).
  
  Submitted by: David Sedlock <[EMAIL PROTECTED]>
  Reviewed by:  Ken Coar
  
  Revision  ChangesPath
  1.10  +42 -0 apache-1.3/htdocs/manual/misc/howto.html
  
  Index: howto.html
  ===
  RCS file: /export/home/cvs/apache-1.3/htdocs/manual/misc/howto.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -u -r1.9 -r1.10
  --- howto.html1998/09/17 14:52:02 1.9
  +++ howto.html1998/10/23 15:14:14 1.10
  @@ -24,6 +24,8 @@
   URL
   reset your log files
   stop/restrict robots
  +proxy SSL requests through your non-SSL
  +server
   
   
   
  @@ -161,6 +163,46 @@
   to the http://info.webcrawler.com/mak/projects/robots/robots.html";
   >robot information pages provided by Martijn Koster for the syntax.
   
  +
  +How to proxy SSL requests through
  +your non-SSL Apache server
  +
  +(submitted by David Sedlock)
  +
  +
  +SSL uses port 443 for requests for secure pages. If your browser just
  +sits there for a long time when you attempt to access a secure page
  +over your Apache proxy, then the proxy may not be configured to handle
  +SSL. You need to instruct Apache to listen on port 443 in addition to
  +any of the ports on which it is already listening:
  +
  +
  +Listen 80
  +Listen 443
  +
  +
  +Then set the security proxy in your browser to 443. That might be it!
  +
  +
  +If your proxy is sending requests to another proxy, then you may have
  +to set the directive ProxyRemote differently. Here are my settings:
  +
  +
  +ProxyRemote http://nicklas:80/ http://proxy.mayn.franken.de:8080
  +ProxyRemote http://nicklas:443/ http://proxy.mayn.franken.de:443
  +
  +
  +Requests on port 80 of my proxy nicklas are forwarded to
  +proxy.mayn.franken.de:8080, while requests on port 443 are
  +forwarded to proxy.mayn.franken.de:443.
  +If the remote proxy is not set up to
  +handle port 443, then the last directive can be left out. SSL requests
  +will only go over the first proxy.
  +
  +
  +Note that your Apache does NOT have to be set up to serve secure pages
  +with SSL. Proxying SSL is a different thing from using it.
  +