Thank you, Erick! I got it. Looks like <a href="http://domain.com/lisp">domain.com/lisp</a> puzzles it as it looks for hunchenback/test right after the domain name.<br>I added <br>ProxyPass /lisp <a href="http://127.0.0.1:3001/lisp">
http://127.0.0.1:3001/lisp</a><br>ProxyPassReverse /lisp <a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a><br><br>ProxyPass /hunchentoot <a href="http://127.0.0.1:3001/hunchentoot">http://127.0.0.1:3001/hunchentoot
</a><br>ProxyPassReverse /hunchentoot <a href="http://127.0.0.1:3001/hunchentoot">http://127.0.0.1:3001/hunchentoot</a><br><br>Into my http.conf and now I've got both lisp handler and hunchenback test!<br><br>Regards,
<br>Andrew<br><br><div><span class="gmail_quote">On 2/6/07, <b class="gmail_sendername">Erick Lopez Carreon</b> <<a href="mailto:erick@fsl.org.mx">erick@fsl.org.mx</a>> wrote:</span><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
On Tue, 2007-02-06 at 12:18 -0500, Andrei Stebakov wrote:<br>> I've installed the hunchentoot server, put in my Lisp lines:<br>><br>><br>> (asdf:oos 'asdf:load-op :hunchentoot-test)<br>> (hunchentoot:start-server :port 3001)
<br>><br>><br>> Now I am trying to figure out how can I display the test page (if I<br>> don't have a direct connection to my local server and the port 3001).<br>> If I try to use url like <a href="http://www.mydomain.com/lisp/hunchentoot/">
http://www.mydomain.com/lisp/hunchentoot/</a><br>> test<br>> I see the default page of Hunchentoot (with message "You're most<br>> likely seeing it because the server administrator hasn't set up a<br>
> custom default page yet").<br>> Any ideas how can I reach the test page?<br>><br><br>Hello Andrei:<br><br>first part:<br><br>I assume you already are using the "Hunchentoot behind a proxy"<br>configuration.
<br><br>If you follow the instructions on Hunchentoot page with mod_proxy you<br>should have something like this:<br><br>ProxyPass /lisp <a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a><br>ProxyPassReverse /lisp 
<a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a><br><br>So you can access the test page with :<br><a href="http://www.mydomain.com/lisp/hunchentoot/test">http://www.mydomain.com/lisp/hunchentoot/test</a>
<br><br>If you want access the test page using only<br><a href="http://www.mydomain.com/lisp/hunchentoot/">http://www.mydomain.com/lisp/hunchentoot/</a><br><br>Maybe you need use a redirect line in Apache config, or "maybe" modify the
<br>*default-handler*/default-dispatcher code.<br><br><br>Second part:<br><br>I do some configuration tests and if i use :<br><br>ProxyPass /lisp <a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a><br>ProxyPassReverse /lisp 
<a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a><br><br>I have exactly the same problem you describe, the problem seems to be the<br><a href="http://127.0.0.1:3001/lisp">http://127.0.0.1:3001/lisp</a> parts, try yourself some variations and you see.
<br><br>The way i got it works well is this:<br><br>ProxyPass /hunchentoot <a href="http://127.0.0.1:3001/hunchentoot">http://127.0.0.1:3001/hunchentoot</a><br>ProxyPassReverse /hunchentoot <a href="http://127.0.0.1:3001/hunchentoot">
http://127.0.0.1:3001/hunchentoot</a><br><br>An then this url ,and the links on it, work:<br><a href="http://mydomain.test/hunchentoot/test">http://mydomain.test/hunchentoot/test</a><br><br><br>Hope this helps, and i need to learn more about the proxyPass directives :)
<br><br>Best Regards!<br><br><br>--<br>Erick Ivaan Lopez Carreon -- <a href="mailto:erick@fsl.org.mx">erick@fsl.org.mx</a><br>PGP Key 1024D/9741C03A 2004-11-19<br>Key fingerprint = 1764 3C6F B433 B2DD 9029  98B1 8E6B 58D3 9741 C03A
<br><br><br>Participa en la FUNDACION DE SOFTWARE LIBRE, A.C.<br><br><a href="http://www.fsl.org.mx">http://www.fsl.org.mx</a><br><br>Somos una asociación civil dedicada a promover, difundir y apoyar el uso<br>y desarrollo del Software Libre en México.
<br><br><br>_______________________________________________<br>tbnl-devel site list<br><a href="mailto:tbnl-devel@common-lisp.net">tbnl-devel@common-lisp.net</a><br><a href="http://common-lisp.net/mailman/listinfo/tbnl-devel">
http://common-lisp.net/mailman/listinfo/tbnl-devel</a><br><br></blockquote></div><br>