On 7/22/08, Rich Schumacher <[EMAIL PROTECTED]> wrote:
> Solprovider,
>
> While I agree with your sentiment that forward proxies can be very
> dangerous, I think you are jumping the gun with your statement doubting they
> have "any legitimate use today."
>
> Here is a a real-world example that I us
Okay seems it were a mismatch in setup, we got it working now..
Difference were:
// not working, for sub sites
ProxyPass / balancer://cluster stickysession=JSESSIONID|jsessionid
nofailover=On
// below are working, for sub sites
ProxyPass / balancer://cluster/ stickysession=JSESSIONID|jses
Hi,
I set up the * Apache 2.2+SSL+Tomcat 5.5 + mod_Jk* it works fine with http.
when I use https I get Forbidden errors.
How to configure the Apache2.2 virtual Host to be accessible the whole
application with https and http the same time(the login link needs to be
implemented with HTTPS for ext
Solprovider,
While I agree with your sentiment that forward proxies can be very
dangerous, I think you are jumping the gun with your statement doubting they
have "any legitimate use today."
Here is a a real-world example that I use at my current job. My employer
operates a series of websites tha
On Tue, Jul 22, 2008 at 4:11 PM, André Warnier <[EMAIL PROTECTED]> wrote:
> Hi.
>
> Could a real Apache/mod_jk specialist clear up a few questions to which I do
> not seem to find a clear, definitive and explicit answer in the
> documentation(s) ?
>
> I mean, some of the things below seem to be wor
Hi.
Could a real Apache/mod_jk specialist clear up a few questions to which
I do not seem to find a clear, definitive and explicit answer in the
documentation(s) ?
I mean, some of the things below seem to be working for me, but I would
kind of like to get some official confirmation, before I
Hi there,
I use ProxyPass to connect Apache Cocoon with Apache HTTPD:
ProxyPass /project/ http://localhost:/ajaxBlock/
ProxyPassReverse / http://localhost:/
The result is that a call to "http://localhost/project/project.html"; is the
same as a call to "http://localhost:88
Hi,
I set up the * Apache 2.2+SSL+Tomcat 5.5 + mod_Jk* it works fine with http.
when I use https I get Forbidden errors.
How to configure the Apache2.2 virtual Host to be accessible the whole
application with https and http the same time(the login link needs to be
implemented with HTTPS for ext
Ahh, so you are saying it should work even without the load module
stuff? What I figured too...
André Warnier wrote:
Nino Saturnino Martinez Vazquez Wael wrote:
Sure here it are, I get the warnings since I also tried adding the
loadmodule directive to the vhost config:
That would not work a
I posted my full vhost config, if I hit tomcat directly everything
works, but I agree there are something fishy regarding "sub" sites, like
/static/f5ffa9029c78c03cdf54c3b0d4999417-thumb.jpg
I've also tried adding this : ProxyPass /static balancer://cluster/static
It does not work. Another t
Nino Saturnino Martinez Vazquez Wael wrote:
Sure here it are, I get the warnings since I also tried adding the
loadmodule directive to the vhost config:
That would not work anyway. LoadModule is a server-level directive.
A VirtualHost is not a separate Apache engine or instance, it's just a
Melanie Pfefer wrote:
hi,
Is there a way to avoid putting the user password in clear text?
AuthType Basic
AuthName "internal users"
AuthLDAPBindDN "uk-siroe-com\user"
AuthLDAPBindPassword "password"
I don't really know the answer, but does it matter ?
1) the httpd.conf should only be readable
Sure here it are, I get the warnings since I also tried adding the
loadmodule directive to the vhost config:
[EMAIL PROTECTED]:~# apache2ctl -M
[Tue Jul 22 20:16:52 2008] [warn] module proxy_module is already loaded,
skipping
[Tue Jul 22 20:16:52 2008] [warn] module proxy_balancer_module is
al
mdn teo wrote:
Hi, I have a question about mod_rewrite.
I want to deny access if the variables included in the GET or the POST are
matching a defined string
this is what I use:
RewriteCond %{REQUEST_METHOD} ^(GET|POST)$ [NC]
RewriteCond %{QUERY_STRING} (myvariable=xxx123) [NC]
RewriteR
hi,
Is there a way to avoid putting the user password in clear text?
AuthType Basic
AuthName "internal users"
AuthLDAPBindDN "uk-siroe-com\user"
AuthLDAPBindPassword "password"
thank you
__
Not happy with your email address?.
Get t
On Tue, Jul 22, 2008 at 6:04 AM, mdn teo <[EMAIL PROTECTED]> wrote:
> Is there a way with mod_rewrite to verify and match the content of the POST?
No, but maybe something like mod_security can.
--
Eric Covener
[EMAIL PROTECTED]
--
--
From: <[EMAIL PROTECTED]>
Sent: Monday, July 21, 2008 10:45 AM
To:
Subject: users Digest 21 Jul 2008 17:45:48 - Issue 3274
-
The official User-To-User support forum of t
On Tue, Jul 22, 2008 at 9:32 AM, Frank Gingras
<[EMAIL PROTECTED]> wrote:
> Nino,
>
> Your error definitely indicates that it's not loaded. Let's run apache2ctl /
> apache2 -M, and see what it says.
>
>>No protocol handler was valid for the URL
>>/static/f5ffa9029c78c03cdf54c3b0d4999417-thumb.jpg.
Nino,
Your error definitely indicates that it's not loaded. Let's run
apache2ctl / apache2 -M, and see what it says.
Nino Saturnino Martinez Vazquez Wael wrote:
Hi Frank
Thanks for the quick answer, but does'nt it mean when the module are
in mods-enabled, it are loaded? Please see the conte
Hello all-
I have a rev. proxy running, which pretty much aggregates many sites to a
common base url. I am having an issue with regard to browser detection. It
happens just fine when I hit a vhost for the particular site, but not when I go
through the reverse. Is there something I'm missing tha
On Tue, Jul 22, 2008 at 7:24 AM, Melanie Pfefer
<[EMAIL PROTECTED]> wrote:
> hi
>
> I am copying the httpd.conf and then change the port number.
>
> When I do
>
> ./httpd -k start -f
> I have this error
>
> httpd (pid 18877) already running
>
> What am I missing?
> my goal is to run another apache
hi
I am copying the httpd.conf and then change the port number.
When I do
./httpd -k start -f
I have this error
httpd (pid 18877) already running
What am I missing?
my goal is to run another apache on a new port.
thanks
__
Not
Okay so even though I think that mod http are loaded i've added the load
module statement to my vhost config:
LoadModule proxy_module /usr/lib/apache2/modules/mod_proxy.so
LoadModule proxy_balancer_module
/usr/lib/apache2/modules/mod_proxy_balancer.so
LoadModule proxy_connect_module
/usr/lib/
Hi, I have a question about mod_rewrite.
I want to deny access if the variables included in the GET or the POST are
matching a defined string
this is what I use:
RewriteCond %{REQUEST_METHOD} ^(GET|POST)$ [NC]
RewriteCond %{QUERY_STRING} (myvariable=xxx123) [NC]
RewriteRule .*? - [F]
---
Ok, now i gured out, that something like:
ProxyPass /special-directory1 http://host1
ProxyPass /special-directory2 http://host2
ProxyPass / balancer://hotcluster/
# The below is the hot standby
BalancerMember http://host1
BalancerMember http://host2
should do the trick. Correct?
Jérôme
Jérôme Patt schrieb:
Hello there,
I'm using a bunch of Apache-Worker as proxys (modules
proxy_balancer_module, proxy_http_module, proxy_module), with two parent
servers. The parent servers are holding the content, which is redundant
till now on both servers. At the moment, there is this direc
Hello there,
I'm using a bunch of Apache-Worker as proxys (modules proxy_balancer_module,
proxy_http_module, proxy_module), with two parent servers. The parent servers are holding
the content, which is redundant till now on both servers. At the moment, there is this
directive in the apache2.co
27 matches
Mail list logo