[users@httpd] x-wap-profile

2011-11-18 Thread Nico Nieuwoudt
Hi In httpd.conf I would like to add a redirect rule to mobi site for x-wap-profile http header, similar as for user agent, example: RewriteCond %{HTTP_USER_AGENT} iemobile [NC,OR] RewriteCond %{HTTP_USER_AGENT} webOS [NC] RewriteRule ^/$ http://ywx.mobi/ [R,L] Questions: 1) I have no idea how

Re: [users@httpd] x-wap-profile

2011-11-18 Thread Igor Cicimov
http://httpd.apache.org/docs/2.2/mod/mod_headers.html On Nov 18, 2011 7:45 PM, Nico Nieuwoudt nico.nieuwo...@gmail.com wrote: Hi In httpd.conf I would like to add a redirect rule to mobi site for x-wap-profile http header, similar as for user agent, example: RewriteCond %{HTTP_USER_AGENT}

Re: [users@httpd] Hard disk I/O

2011-11-18 Thread Bostjan Skufca
My experience with ESX is that when VM is freshly restarted, disk speed is close to bare metal, but longer the VM is up the worse it gets. In my case it went from 60MB/s to cca 1.5MB/s. b. On 18 November 2011 00:15, Igor Cicimov icici...@gmail.com wrote: Hmmm that's a pretty bad disk read I

RE: [users@httpd] Apache proxy server - in case of wrong credentials, getting 401 instead of 407

2011-11-18 Thread Boris B
They are missing:) I also had problems with my client not sending correct proxy requests - resolved now. Thank you, Boris Date: Fri, 18 Nov 2011 10:27:04 +1100 From: icici...@gmail.com To: users@httpd.apache.org Subject: Re: [users@httpd] Apache proxy

Re: [users@httpd] SSL received a record with an unknown content type

2011-11-18 Thread Yehuda Katz
On Fri, Nov 18, 2011 at 2:56 AM, Ranjith Kumar ranjit...@gmail.com wrote: I am running a web application on apache and using openssl for encryption. I am receiving ssl error when I browse my application with https://. The error says SSL received a record with an unknown content type Error

[users@httpd] enlightenment about the require directive

2011-11-18 Thread Bastien Semene
Hi everyone, I have a WSGI application running in a vhost, and I'd like to setup authorisations based on path. As I want to avoid to have to modify the vhost each time a new resource/user is added or modified I wish to use the require group to grant access. The idea is to delegate

Re: [users@httpd] enlightenment about the require directive

2011-11-18 Thread Rich Bowen
On Nov 18, 2011, at 12:59 PM, Bastien Semene wrote: I read the documentation of the Require directive and something is not clear for me, as I'm not a native english speaker : Access controls which are applied in this way are effective for all methods. This is what is normally desired. If

[users@httpd] Proxy Tomcat

2011-11-18 Thread Ricardo Bayley
Hi folks, I am trying to proxy a request. I have this input http://someAddress/wms?val1=1val2=2 it should be turned into http://10.0.0.2:8080/gwc/service/wms?val1=1val2=2 ProxyPassReverse / http://10.0.0.2:8080/ ProxyPass / http://10.0.0.2:8080/ RewriteEngine On # RewriteCond *some

Re: [users@httpd] Proxy Tomcat

2011-11-18 Thread congo thomas
Hello Ricardo, What i usually do for geo services, is to have a dedicated vhost for each service, i.e. one for your geowebcache and one for the mapservice, then its easy to proxy all wms requests onwards to the geowebcache, which subsequently could parse the requests to a basic wms service