Hi Ricardo,
APR is like a wrapper around existing OS specific implementations of APIs.
Some of the APIs operate at kernel level. I am not sure whether i understood
the question. But if u are talking about using kernel concepts of
Semaphores, shared memory and all, yes APR operates at that level.
R
Hi all,
I have other doubt.When I'm programming in APR, it works in kernel-level ??
My friend told it and I was confuse !!!
Thank You !!
Ricardo
--
View this message in context:
http://www.nabble.com/Does-APR-works-in-Kernel-Level---tp22834996p22834996.html
Sent from the Apache HTTP Server -
I have Digest authentication working if the user enters IP address in the
browser. If that application then makes a request for data to either the
fully qualified DNS name or intranet alias (of that same server), the user
gets prompted again for username and password.
Is there a way to make the
Hi all,
Can I post doubts about Jmeter here ???
Thank You !!
Ricardo
--
View this message in context:
http://www.nabble.com/Can-I-post-here-about-Jmetertp22834780p22834780.html
Sent from the Apache HTTP Server - Users mailing list archive at Nabble.com.
--
Thanks Brian
I figured out the issue, here is the solution
RewriteEngine On
RewriteLogLevel 8
RewriteLog logs/webserver/rewrite_log
#
RewriteCond %{HTTP_HOST} ^webserver1.*
RewriteCond %{HTTPS} off
RewriteCond %{REQUEST_URI} (ssl1(.*)|ssl2(.*))
RewriteRule (.*) https://%{SERVER_NAME
On Wed, 2009-04-01 at 16:36 +0100, Tom Evans wrote:
> On Wed, 2009-04-01 at 15:55 +0100, bruno wrote:
> >
> > I tried to load html files from a few computers in my lan. I wrote
> > 127.0.0.1 on localhost and sever's IP address from others computers but
> > only I can load index.html saying "It wo
Why don't you use mod_status
(http://httpd.apache.org/docs/1.3/mod/mod_status.html) ?
You can create a shell that read that information in a interval of 5-5 minutes.
Regards
Lincoln Zuljewic Silva
De: moda preethi [mailto:preethim...@yahoo.com]
Enviada em: quarta-feira, 1 de abril de 2009 17:2
Evan Platt wrote:
At 12:59 PM 4/1/2009, you wrote:
What is the best way to limit concurrent connections per IP to, say, 20?
I'm having some problems with "connection storms" caused by bots
harvesting websites.
mod_limitipconn.c ?
http://dominia.org/djao/limitipconn2.html
I can vouch for
Hi,
I have to check the apache user access logs and then separate the users based
on timestamp.I have to check how to take data from apache access logs and see
if it is possible to graph the data to show number of users access system with
what time (of day, week, month ?I am not able to underst
Evan Platt schrieb:
At 12:59 PM 4/1/2009, you wrote:
What is the best way to limit concurrent connections per IP to, say, 20?
I'm having some problems with "connection storms" caused by bots
harvesting websites.
mod_limitipconn.c ?
http://dominia.org/djao/limitipconn2.html
Never tried it
On Wed, Apr 1, 2009 at 8:45 AM, wrote:
> Hi,
>
> we have a multi threaded apache with 'thread safe' DISABLED php on our
> production server. we used to have a good amount of traffic to our
> application.
>
> will this be an issue and do you guys have any idea? actually we see lots of
> segfaults
At 12:59 PM 4/1/2009, you wrote:
What is the best way to limit concurrent connections per IP to, say, 20?
I'm having some problems with "connection storms" caused by bots
harvesting websites.
mod_limitipconn.c ?
http://dominia.org/djao/limitipconn2.html
Never tried it, but looks like it s
What is the best way to limit concurrent connections per IP to, say, 20?
I'm having some problems with "connection storms" caused by bots
harvesting websites.
--
Tomasz Chmielewski
http://wpkg.org
-
The official User-To-User
On Wed, Apr 1, 2009 at 1:01 PM, ntwrkd wrote:
> If you have cached content, using expires is a very good thing to do.
> It depends on your architecture and needs.
>
> Here are posts from two differing camps:
> http://developer.yahoo.com/performance/rules.html#expires
> http://www.codinghorror.com/
On Wed, Apr 1, 2009 at 1:24 PM, inas inassen wrote:
> Thanks Brian,
>
> you right, I did correction, but it seems not working for ssl and it works
> for nossl
>
> this is my rewrite rules
>
> RewriteEngine On
> RewriteLog logs/webserver1/rewrite_log
> #
> RewriteCond %{HTTP_HOST} ^webserver1.*
> R
You wouldn't specify anything, they would adopt the requesting scope.
This lets the browser deal with it. So '/relativeurl.html' is returned
to the browser and the browser appends the full URL based on the page
its being requested in.
The only time this gets weird is when you need to enforce SSL a
That would be the best thing to do.
Please excuse my ignorance though. If the hrefs were written in relative,
would you still specify the http or https in the string? Or would you not
include those?
Thanks,
Mike
On Wed, Apr 1, 2009 at 10:43 AM, John Armstrong wrote:
> We use relative url's to
We use relative url's to bypass this issue.
It also prevents other 'backend URL leakage' and generally allows for
proper load balancing without having to write software alter your
display output.
John-
On Tue, Mar 31, 2009 at 11:36 PM, Krist van Besien
wrote:
> On Wed, Apr 1, 2009 at 5:10 AM, M
Thanks Brian,
you right, I did correction, but it seems not working for ssl and it works for
nossl
this is my rewrite rules
RewriteEngine On
RewriteLog logs/webserver1/rewrite_log
#
RewriteCond %{HTTP_HOST} ^webserver1.*
RewriteCond %{HTTPS} =off
RewriteCond %{SERVER_PORT} ^80
Rewrite
If you have cached content, using expires is a very good thing to do.
It depends on your architecture and needs.
Here are posts from two differing camps:
http://developer.yahoo.com/performance/rules.html#expires
http://www.codinghorror.com/blog/archives/000932.html
Hope this helps
@msacks
On Wed
Hi All,
Is using expires a good thing via Apache? It is recommended by someone in my
company as a best practice but seems as if there are probably pros and cons to
it.
Regards,
-Tony
-
The official User-To-User suppo
On Wed, Apr 1, 2009 at 11:19 AM, inas inassen wrote:
>
> Hi all,
>
> I'm using mod_proxy balancer with tomcat and apache.
> I used mod_rewrite to switch between http and https
>
> When I have the pattern /nossl ==> I want to redirect to http
> When I have the pattern /ssl ==> I want to redirect
On Wed, 2009-04-01 at 15:55 +0100, bruno wrote:
>
> I tried to load html files from a few computers in my lan. I wrote
> 127.0.0.1 on localhost and sever's IP address from others computers but
> only I can load index.html saying "It works".
>
> Thanks,
> Bruno.
>
127.0.0.1 will only work if th
On 1 Apr 2009, at 15:39, pthys...@intec.ugent.be wrote:
Yes I have: it's for Apache 2.2 and does not have an equivalent in
Apache
2.0 it seems.
Somewhere in bugzilla (issues.apache.org) there's a patch for 2.0.
--
Nick Kew
-
Hi all,
I'm using mod_proxy balancer with tomcat and apache.
I used mod_rewrite to switch between http and https
When I have the pattern /nossl ==> I want to redirect to http
When I have the pattern /ssl ==> I want to redirect to https
so I write the following rules:
RewriteEngi
On Tue, 2009-03-31 at 20:48 -0400, Brian Mearns wrote:
> On Tue, Mar 31, 2009 at 7:24 PM, Jonesy wrote:
> > On Tue, 31 Mar 2009 23:10:18 +0100, bruno wrote:
> >>
> >> I have installed apache 2.2 on my computer and start server but only I
> >> can launch index.html on the browser. When I try to loa
On Tue, 2009-03-31 at 18:14 -0400, Glen Barber wrote:
> Hi, Bruno.
>
> On Tue, Mar 31, 2009 at 6:10 PM, bruno wrote:
> > Hi all,
> >
> > I have installed apache 2.2 on my computer and start server but only I
> > can launch index.html on the browser. When I try to load other file
> > browser show
On Tue, 2009-03-31 at 23:24 +, Jonesy wrote:
> On Tue, 31 Mar 2009 23:10:18 +0100, bruno wrote:
> >
> > I have installed apache 2.2 on my computer and start server but only I
> > can launch index.html on the browser. When I try to load other file
> > browser show me error "Not found".
>
> What
pthys...@intec.ugent.be wrote:
[...]
So my question boils down to: what is a valid Apache 2.0 workaround for
the functionality offered by proxypassreversecookiedomain and
proxypassreversecookiepath, given that I cannot upgrade to Apache 2.2 and
cannot modify the proxied server (e.g. change anythi
On Wed, 2009-04-01 at 16:03 +0200, Krist van Besien wrote:
> On Wed, Apr 1, 2009 at 2:02 PM, wrote:
>
> > However, the proxied application has "login" functionality and thus sets a
> > cookie.
> >
> > While I have been working on the revrese proxy setup for the last couple
> > of days, I believe
> On Wed, Apr 1, 2009 at 2:02 PM, wrote:
>
>> However, the proxied application has "login" functionality and thus sets
>> a
>> cookie.
>>
>> While I have been working on the revrese proxy setup for the last couple
>> of days, I believe I'm now stuck: the proxied app is generating cookies
>> with
On Wed, Apr 1, 2009 at 2:02 PM, wrote:
> However, the proxied application has "login" functionality and thus sets a
> cookie.
>
> While I have been working on the revrese proxy setup for the last couple
> of days, I believe I'm now stuck: the proxied app is generating cookies
> with domain "remo
hugh williams writes:
> My question still remains - what changed in Apache that a construct it
> formerly parsed one way is now treated differently? Or not so much
> what changed, but why? Why does Apache now "care" what is inside an
> exec cmd' string?
Even in 1.3, mod_include interpreted $ in
Hi,
we have a multi threaded apache with 'thread safe' DISABLED php on our
production server. we used to have a good amount of traffic to our application.
will this be an issue and do you guys have any idea? actually we see lots of
segfaults in our /var/log/messages.
--rats
_
Good morning to all,
I have a apache with SSL and the mod_status is not working. The config I made
was:
SetHandler server-status
Order deny,allow
Deny from all
Allow from all <- the "all" is just for tests propose!
ExtendedStatus On
After a "kill -HUP `cat /opt/apache22/logs/
Hello,
I'm setting up an Apache reverse proxy (for Apache 2.0.52 on RHEL4) and am
struggling with the following problem:
when mapping http://proxy/remote/ to http://remote/, I have been able to
replace all references to server remote using ProxyPass, ProxyPassReverse
and mod_proxy_html module to
36 matches
Mail list logo