In fact, it was easier than a classical proxy problem... In my Apache 2.2, the proxy_ajp module was activated. So, it actually was the file "httpd-proxy-ajp.conf" that controls the Apache proxy configuration. The three groups of lines which are mentioned in my precedent mail force the people who write the server address in their browser to access directely to the "phototheque" webapp. So I just had to modify the proxypass defined in the "location" tags. Here is my new configuration:
<Location /geoserver> ProxyPass ajp://127.0.0.1:8009/geoserver ProxyPassReverse ajp://127.0.0.1:8009/geoserver ProxyPassReverseCookiePath / / </Location> <Location /phototheque> ProxyPass ajp://127.0.0.1:8009/phototheque ProxyPassReverse ajp://127.0.0.1:8009/phototheque ProxyPassReverseCookiePath / / </Location> Hope it will help someone once! Geoffrey On Wed, 29 Jun 2011 17:48:51 +0200, Charles Galpin <[email protected]> wrote: > It seems like it's proxy day. Please see the other thread today on this > issue, but there is a geoserver config settings as well as container > proxy setting you may need to set, and it may cause other issues :) > > charles > > On Jun 29, 2011, at 10:21 AM, gbrun wrote: > >> Hi everyone! >> >> I still have a last problem... It's about GeoServer access from the >> intranet. >> >> When I access to GeoServer directly on my server, there is no matter! I >> can equally use these URLs and it works: >> - http://localhost:8080/geoserver >> - http://192.168.168.199:8080/geoserver >> - http://servername:8080/geoserver >> >> But when I try to access GeoServer admin panel from an other computer >> in the network, it doesn't work at all! >> >> I think, there is something to configure, like a proxy. There is >> already an other webapp that is working on the intranet. This one works >> through a classic Apache 2.2.8, that makes the webapp available on the >> network trough this URL: http://servername:81/phototheque/ >> >> I partly know the configuration of this webapp on the server. There is >> a file called "httpd.conf", containing an include pointing to a file >> called "httpd-proxy-ajp.conf". This file contains the following lines: >> >> <Location /phototheque> >> ProxyPass ajp://127.0.0.1:8009/phototheque >> ProxyPassReverse ajp://127.0.0.1:8009/phototheque >> ProxyPassReverseCookiePath / / >> </Location> >> >> <Location /phototheque/> >> ProxyPass ajp://127.0.0.1:8009/phototheque >> ProxyPassReverse ajp://127.0.0.1:8009/phototheque >> ProxyPassReverseCookiePath / / >> </Location> >> >> <Location /> >> ProxyPass ajp://127.0.0.1:8009/phototheque >> ProxyPassReverse ajp://127.0.0.1:8009/phototheque >> ProxyPassReverseCookiePath / / >> </Location> >> >> I spent all the day to find a solution, but I didn't achieve... >> >> Any ideas? :) >> >> Geoffrey >> >> >> On Tue, 28 Jun 2011 14:51:36 +0200, gbrun <[email protected]> wrote: >> >>> You're the best, Charles! Problem solved! My Java was a JRE 6 - build >>> 21 ; >>> I installed the most recent version, JRE 6 - build 26! Thanks a lot! >>> >>> Geoffrey >>> >>> >>> On Tue, 28 Jun 2011 14:14:15 +0200, Charles Galpin <[email protected]> >>> wrote: >>> >>>> I think the first problem is this one. I am unsure why nio.dll is >>>> found, >>>> but I'd suggest updating your jre to the latest available, or try >>>> installing the jdk. I'm just guessing, so maybe wait for someone more >>>> knowledgable to chime in if you don't want to do that :) >>>> >>>> charles >>>> >>>> On Jun 28, 2011, at 7:33 AM, gbrun wrote: >>>> >>>>> Initialization of bean failed; nested exception is >>>>> java.lang.UnsatisfiedLinkError: C:\Program Files >>>>> (x86)\Java\jre6\bin\nio.dll: La procédure spécifiée est introuvable >>>> >>> >>> >> >> >> -- >> Using Opera's revolutionary email client: http://www.opera.com/mail/ > > > ------------------------------------------------------------------------------ > All of the data generated in your IT infrastructure is seriously > valuable. > Why? It contains a definitive record of application performance, security > threats, fraudulent activity, and more. Splunk takes this data and makes > sense of it. IT sense. And common sense. > http://p.sf.net/sfu/splunk-d2d-c2 > _______________________________________________ > Geoserver-users mailing list > [email protected] > https://lists.sourceforge.net/lists/listinfo/geoserver-users -- Using Opera's revolutionary email client: http://www.opera.com/mail/ ------------------------------------------------------------------------------ All of the data generated in your IT infrastructure is seriously valuable. Why? It contains a definitive record of application performance, security threats, fraudulent activity, and more. Splunk takes this data and makes sense of it. IT sense. And common sense. http://p.sf.net/sfu/splunk-d2d-c2 _______________________________________________ Geoserver-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/geoserver-users
