[us...@httpd] Re: Trouble setting up second document root

2010-07-22 Thread Joost Heer, de
>I am running Amarok Web Front end. On Ubuntu Mobline Remix I can have the >music >files located in /home/user/Music, on my FC12 box that will not work. The main >difference between the 2 machiens is that on Ubuntu Apache2 is the service name >and on FC12 httpd is the service name for the web se

[us...@httpd] Re: Custom headers in Connect message

2010-07-09 Thread Joost Heer, de
>Is there any way I can add a custom header (or even just an >X-Forwarded-For header) into the CONNECT message? In other words: you want to be able to play MITM. No, that's not possible unless you terminate the SSL connection on the proxy. Joost

[us...@httpd] Re: Apache lstat performance problem

2010-07-09 Thread Joost Heer, de
>For every file should be served by apache httpd, apache httpd tries to lstat >all directory in path more times: This is normally seen when you have .htaccess usage turned on (all subdirectories have to be checked for the presence of .htaccess). Do you have AllowOverride set to off? Joost ---

[us...@httpd] Re: Execute CGI (or FastCGI or PHP) on missing target file

2010-07-09 Thread Joost Heer, de
>Specifically, what I'd like to do is to be able to execute one named CGI >(probably under FastCGI) where Apache cannot find an existing target >file (ideally with named extensions like .html but that's not so >important) after URL-path translation phase. ErrorDocument 404 /cgi-bin/template.cgi

[us...@httpd] Re: Connection attempts - mod_proxy

2010-06-30 Thread Joost Heer, de
>Using CentOS 5.4 version of apache httpd-2.2.3-31.el5. I have several >virtualhost and one of the virtualhost, use mod_proxy to serve a web >site I have running on Windows 2003, this server is not available >online, it is an internal server. So Apache is a reverse proxy? >Reviewing the messag

[us...@httpd] Betr.: Re: [us...@httpd] NameVirtualHost Directive - - - - Multiple SSL virtual hosts

2010-06-06 Thread Joost Heer, de
>NameVirtualHost your-physical-ip7:80 >NameVirtualHost your physical-ip:443 ... > The name after VirtualHost should match the name after NameVirtualHost, so this example is wrong, and should be Joost - The official User-To-U

RE: [us...@httpd] Betr.: Re: [us...@httpd] Apache Reverse Proxy for Citrix MetaFrame Presentation Server

2010-06-06 Thread Joost Heer, de
>>> Ruiyuan Jiang 3-6-2010 23:02 >>> >Hi, I tested and I got "ssl error code 47" error. It seems to me that Apache >wants to terminate any port 443 traffic. >The Citrix presentation server does not allow termination of the traffic at >port 443. Otherwise Citrix will have an error. >Is there a w

[us...@httpd] Betr.: Re: [us...@httpd] Apache Reverse Proxy for Citrix MetaFrame Presentation Server

2010-06-02 Thread Joost Heer, de
>>> Igor Cicimov 2-6-2010 2:11 >>> >Maybe this will work: > > Servername citrix.example.com > ProxyRequests Off > AllowCONNECT 443 > ProxyPass / backendserver > ProxyPassReverse / backendserver > AllowCONNECT is for forward proxies. You need SSLProxyEngine on, and th