Many thanks for the help, and some excellent reading :-)

However ... I am still getting inconsistant results, both myself and 
my testing off-site people.  

Have I done it correctly ?  Code below.

I am wondering ... I am proxy-ing to an IIS with its default file set 
(index.htm).
Is my directory listing restrictions comflicting with those on the IIS server.

For instance ... A lookup of  http://egshs.wa.edu.au/weather/index.htm works 
perfectly, whereas
 http://egshs.wa.edu.au/weather seems to fail dismally :-(

Regards
Peter


# -----------------------------------------------------------------
# -- PdeG changed this

HostnameLookups  off

#  --- PdeG
#
<VirtualHost *:80>
  ServerName       egshs.wa.edu.au
  ServerAlias  www.egshs.wa.edu.au
  DocumentRoot /mnt/hd/website
  UseCanonicalName On
</VirtualHost>

<Directory "/mnt/hd/website">

     Options -Indexes FollowSymLinks MultiViews
     DirectoryIndex   index.html

     AllowOverride None

     Order allow,deny
     Allow from all
</Directory>


# RewriteEngine on
# RewriteRule    /weather$           weather/  [R]

ProxyRequests off
ProxyPass            /weather   http://ms-weather.egshs.local
ProxyPassReverse     /weather   http://ms-weather.egshs.local
#
#




Peter de Groot
System Administrator
Eastern Goldfields Senior High School
Kalgoorlie 6430
Mob:  0418915312
 


-----Original Message-----
From: Boyle Owen [mailto:[EMAIL PROTECTED] 
Sent: Thursday, 19 May 2005 5:55 PM
To: users@httpd.apache.org
Subject: RE: [EMAIL PROTECTED] Newbie query about proxypass


> -----Original Message-----
> From: de Groot, Peter [mailto:[EMAIL PROTECTED]
> Sent: Donnerstag, 19. Mai 2005 10:32
> To: users@httpd.apache.org
> Subject: [EMAIL PROTECTED] Newbie query about proxypass
> 
> 
> 
> 
> Please help :-)
> 
> New to Apache and am trying to setup a proxy pass to our
> weather station
> Website running on IIS on a PC on our internal network.   
> Accessable vie
> 
>         http://egshs.wa.edu.au/weather
> 
> Am having a few probs ... Starting with this one. .. The dreaded 
> trailing slash ;-)
> 
> According to all the doc I have managed to google this rewrite should 
> work.
> 
> The problem is that I have to do a refresh the first time I access the 
> site with MS browsers... Otherwise the in-page images do not come up. 
> After the first
> refresh it is fine ....

I do not see this behaviour with IE6.0... The images load first time.

> 
> Any thoughts ...... Extract below.
> 
> 
> 
> RewriteEngine on
> RewriteRule    /weather$           weather/  [R]

This is a standard prescription for the trailing-slash problem. However, you 
can avoid the problem entirely by setting ServerName and UseCanonicalName 
correctly. If you do this, apache will make a self-referential URL 
automatically and you won't need to bother with mod_rewrite - see 
http://httpd.apache.org/docs-2.0/server-wide.html#identification for details.
 
> ProxyRequests off
> ProxyPass            /weather   http://ms-weather.egshs.local/
> ProxyPassReverse     /weather   http://ms-weather.egshs.local/

Your use of trailing slashes is inconsistent here. Either:

        ProxyPass /weather/ http://ms-weather.egshs.local/
or:
        ProxyPass /weather  http://ms-weather.egshs.local

(use / on both paths or neither). However, this doesn't really matter - your 
setup will just lead to a proxy request to 
http://ms-weather.egshs.local//some-file which still works...

Rgds,
Owen Boyle
Disclaimer: Any disclaimer attached to this message may be ignored. 




> 
> TIA
> Regards
> 
> 
> Peter de Groot
> System Administrator
> Eastern Goldfields Senior High School
> Kalgoorlie 6430
> Mob:  0418915312
>  
> 
> ---------------------------------------------------------------------
> The official User-To-User support forum of the Apache HTTP
> Server Project.
> See <URL:http://httpd.apache.org/userslist.html> for more info.
> To unsubscribe, e-mail: [EMAIL PROTECTED]
>    "   from the digest: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
Diese E-mail ist eine private und persönliche Kommunikation. Sie hat keinen 
Bezug zur Börsen- bzw. Geschäftstätigkeit der SWX Gruppe. This e-mail is of a 
private and personal nature. It is not related to the exchange or business 
activities of the SWX Group. Le présent e-mail est un message privé et 
personnel, sans rapport avec l'activité boursière du Groupe SWX.
 
 
This message is for the named person's use only. It may contain confidential, 
proprietary or legally privileged information. No confidentiality or privilege 
is waived or lost by any mistransmission. If you receive this message in error, 
please notify the sender urgently and then immediately delete the message and 
any copies of it from your system. Please also immediately destroy any 
hardcopies of the message. You must not, directly or indirectly, use, disclose, 
distribute, print, or copy any part of this message if you are not the intended 
recipient. The sender's company reserves the right to monitor all e-mail 
communications through their networks. Any views expressed in this message are 
those of the individual sender, except where the message states otherwise and 
the sender is authorised to state them to be the views of the sender's company.

---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project. See 
<URL:http://httpd.apache.org/userslist.html> for more info. To unsubscribe, 
e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
The official User-To-User support forum of the Apache HTTP Server Project.
See <URL:http://httpd.apache.org/userslist.html> for more info.
To unsubscribe, e-mail: [EMAIL PROTECTED]
   "   from the digest: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to