hi users

First I want to apologize if my questions are so stupid, I'm new with Apache.  

I'm  configuring a reverse proxy, I took the basic configuration from 
http://www.apachetutor.org/admin/reverseproxies. Below my actual httpd.conf file



****************************************************************************************************************************************************

LoadModule  proxy_module         /usr/lib/apache2/modules/mod_proxy.so
LoadModule  proxy_http_module    /usr/lib/apache2/modules/mod_proxy_http.so
LoadModule proxy_ftp_module     /usr/lib/apache2/modules/mod_proxy_ftp.so
LoadModule proxy_connect_module /usr/lib/apache2/modules/mod_proxy_connect.so
LoadModule  headers_module       /usr/lib/apache2/modules/mod_headers.so
LoadModule  deflate_module       /usr/lib/apache2/modules/mod_deflate.so


ProxyRequests off
ProxyHTMLLogVerbose On
        LogLevel Debug


ProxyPass /app8/ http://ivapp/Portal/
ProxyPassReverse /app8/ http://ivapp/Portal/

SetOutputFilter proxy-html
ProxyHTMLURLMap http://ivapp/Portal /app8

ProxyPass /app9/ http://ngfapp:8080/
ProxyPassReverse /app9/ http://ngfapp:8080/


SetOutputFilter proxy-html
ProxyHTMLURLMap http://ngfapp:8080 http://mainportal/app9

<Location /app8/>
    ProxyPassReverseCookieDomain ivapp mainportal
    ProxyPassReverseCookiePath /Portal /app8
    
        SetOutputFilter proxy-html
        ProxyHTMLURLMap /       /app8/
    RequestHeader   unset   Accept-Encoding

</Location>

<Location /app9/>        
    ProxyPassReverseCookiePath /ncsm /app9/ncsm
    ProxyPassReverseCookieDomain ngfapp mainportal

    ProxyPassReverseCookiePath /NCADMIN /app9/NCADMIN
    
    ProxyPassReverseCookiePath /sla /app9/sla
    
    ProxyPassReverseCookiePath /webtop /app9/webtop
    
    ProxyPassReverseCookiePath / /app9/
    
        SetOutputFilter proxy-html
        ProxyHTMLURLMap /       /app9/
    RequestHeader   unset   Accept-Encoding
</Location>


***************************************************************************************************************************************************


I want to ask you people some questions 


1) What is the porpoise of the next code used in the web  example 
(http://www.apachetutor.org/admin/reverseproxies ) ?

ProxyHTMLURLMap  /app1  /app1

 2) One of the applicatios is still not working wery well, after I introduce 
user and password the next page it show me is a blank page, as far as I can 
see  I can log in the application but still I think I have some problems with 
the paths.

Sometimes the web show me the next error:

Not Found

The requested URL 
/portal/media-type/html/role/user/page/default.psml/js_pane/P-109054a07f3-10006 
was not found on this server.


the apache log "error.log" says :


[Fri Aug 22 12:13:51 2008] [error] [client 127.0.0.1] File does not exist: 
/var/www/portal, referer: http://mainportal/app9/

the apache log "acces.log" says :

127.0.0.1 - - [22/Aug/2008:12:13:51 -0500] "GET 
/portal/media-type/html/role/user/page/default.psml/js_pane/P-109054a07f3-10006?framedcontent=01&dhtmltab=dhtmltabcontent1
 HTTP/1.1" 404 410 "http://mainportal/app9/"; "Mozilla/5.0 (X11; U; Linux i686; 
es-AR; rv:1.9.0.1) Gecko/2008072820 Firefox/3.0.1"


Can anybody help me to solve this issue, give me some idea or something ?


3) mi apache vesion is Apache/2.2.8 (Ubuntu) PHP/5.2.4-2ubuntu5.3 with 
Suhosin-Patch proxy_html/3.0.0 Server at mainportal Port 80


Thanks in advance


regards;

Juan Romero






---------------------------------------------------------------------
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