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 somewhe
Hi folks,
I am trying to proxy a request.
I have this input
http://someAddress/wms?val1=1&val2=2
it should be turned into
http://10.0.0.2:8080/gwc/service/wms?val1=1&val2=2
ProxyPassReverse / http://10.0.0.2:8080/
ProxyPass / http://10.0.0.2:8080/
RewriteEngine On
# RewriteCond *som
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.
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 authoris
On Fri, Nov 18, 2011 at 2:56 AM, Ranjith Kumar 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 code: "ssl_er
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
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 wrote:
> Hmmm that's a pretty bad disk read I would expect this t
http://httpd.apache.org/docs/2.2/mod/mod_headers.html
On Nov 18, 2011 7:45 PM, "Nico Nieuwoudt" 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} "iemobile" [NC,OR]
>
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 ho