Re: [us...@httpd] Unresponsive apache webserver, memory issue

2011-01-07 Thread Igor Galić
- "james" wrote: > >How does your MPM config look like? > >Take a look at: > >http://wiki.apache.org/httpd/PerformanceScalingUp > > Thanks for these links Igor. After reading through the ScalingUp > document it brought my attention to the fact that the RAM had been > increased on this syste

Re: [us...@httpd] SSL Termination at Apache

2011-01-07 Thread Igor Galić
- "Tushar Chavan" wrote: > Hi Team, > > > Can we terminate SSL at Apache? If yes , can you please let me know > how to do it ? I mean is there any directive for it? http://httpd.apache.org/docs/current/ssl/ > Best Regards, > Tushar. -- Igor Galić Tel: +43 (0) 664 886 22 883 Mail: i.ga

Re: [us...@httpd] SSL Termination at Apache

2011-01-07 Thread Igor Galić
- "Tushar Chavan" wrote: > Hi Team, > > > > > Just found proxy.config.ssl.* variables. > > > http://trafficserver.apache.org/docs/v2/admin/secure.htm#UsingSSLTermination That would be Apache Traffic Server. This here is the Apache HTTP Server project's user mailinglist. > It should

Re: [us...@httpd] Unresponsive apache webserver, memory issue

2011-01-07 Thread james
>How does your MPM config look like? >Take a look at: >http://wiki.apache.org/httpd/PerformanceScalingUp Thanks for these links Igor. After reading through the ScalingUp document it brought my attention to the fact that the RAM had been increased on this system but the swap partition had not bee

RE: [us...@httpd] SSL Termination at Apache

2011-01-07 Thread Tushar Chavan
Hi Team, Just found proxy.config.ssl.* variables. http://trafficserver.apache.org/docs/v2/admin/secure.htm#UsingSSLTermination It should be fine for now. If needed I will update this port. Best Regards,Tushar. From: tushar.cha...@hotmail.com To: users@httpd.apache.org Date: Fri, 7 Jan 2011 2

[users@httpd] SSL Termination at Apache

2011-01-07 Thread Tushar Chavan
Hi Team, Can we terminate SSL at Apache? If yes , can you please let me know how to do it ? I mean is there any directive for it? Best Regards,Tushar.

RE: [us...@httpd] Regarding the redirect rules

2011-01-07 Thread motty.cruz
http://borkweb.com/story/apache-rewrite-cheatsheet L Last Rule Stop the rewriting process here and don't apply any more rewriting rules. This corresponds to the Perl last command or the break command from the C language. Use this flag to prevent the currently rewritten URL from being rewrit

Re: [us...@httpd] Regarding the redirect rules

2011-01-07 Thread aparna aryan
Thanks a lot Joost, Can u please explain what does "[R,L]" mean too? On Fri, Jan 7, 2011 at 6:11 PM, Joost de Heer wrote: > On Fri, January 7, 2011 13:24, aparna aryan wrote: > > Hello, > > > > Can any one please explain the meaning of this rule? > > > > RewriteEngine On > > RewriteCond %{HTTP:FR

Re: [us...@httpd] Regarding the redirect rules

2011-01-07 Thread Joost de Heer
On Fri, January 7, 2011 13:24, aparna aryan wrote: > Hello, > > Can any one please explain the meaning of this rule? > > RewriteEngine On > RewriteCond %{HTTP:FRONTEND-HTTPS} !on > RewriteRule ^/(wps/myportal/protected/.*) > https://internal.ericsson.com/$1[R,L] > If the HTTP-header 'FRONTEND-HTTP

[us...@httpd] Regarding the redirect rules

2011-01-07 Thread aparna aryan
Hello, Can any one please explain the meaning of this rule? RewriteEngine On RewriteCond %{HTTP:FRONTEND-HTTPS} !on RewriteRule ^/(wps/myportal/protected/.*) https://internal.ericsson.com/$1[R,L]