Re: [users@httpd] worker.c config in prefork.c module

2013-04-16 Thread Daniel Ruggeri
On 4/16/2013 5:41 PM, Don Hill wrote: > I am working on apache the following apache 2.2.15 server on redhat > with the prefork.c module compiled in(see below). I have noticed that > there is no but there is one for > > ... The would evaluate as 'false' meaning all of those configuration directi

[users@httpd] worker.c config in prefork.c module

2013-04-16 Thread Don Hill
I am working on apache the following apache 2.2.15 server on redhat with the prefork.c module compiled in(see below). I have noticed that there is no but there is one for So will this worker config be used or revert to default prefork.c config? Also the eyc/sysconfig/httpd has the worker line co

Re: [users@httpd] Redirect HTTP to HTTPS does not work (mod_rewrite)

2013-04-16 Thread Felipe Roman
Hi, Solved :-) Actually the problem was not in this dashboard new rule, the problem was in one of the previous rules that was skipping my new rule in some cases. So after I changed the rule order the final solution is: RewriteCond %{HTTPS} !=on RewriteRule ^/dashboard$ https://%{HTTP_HOST}/dash

Re: [users@httpd] Redirect HTTP to HTTPS does not work (mod_rewrite)

2013-04-16 Thread Sean Alderman
Assuming there is additional URL coming after /dashboard when the server sends you the login page... e.g. /dashboard/login.php ...Your redirect will not match with the $ at the end of the condition... RewriteRule ^/dashboard$ https://%{HTTP_HOST}/dashboard [R=301,L] says /dashboard, so /dashboa

Re: [users@httpd] Redirect HTTP to HTTPS does not work (mod_rewrite)

2013-04-16 Thread Felipe Roman
On Tue, Apr 16, 2013 at 10:07 AM, Igor Cicimov wrote: > There shouldnt be empty line between these two. > Hi Igor, In the conf file there isn't empty line between then: RewriteCond %{HTTPS} !=on RewriteRule ^/dashboard$ https://%{HTTP_HOST}/dashboard [R=301,L] and I got the same problem after

Re: [users@httpd] Redirect HTTP to HTTPS does not work (mod_rewrite)

2013-04-16 Thread Igor Cicimov
On 16/04/2013 10:17 PM, "Felipe Roman" wrote: > > Hi Igor, > > Thanks for your help. I replaced the %{SERVER_NAME} by %{HTTP_HOST} but the behavior continue the same. The redirect worked fine when I access > http://myhost.com/dashboard I got redirected to https://myhost.com/dashboard > > but after

Re: [users@httpd] Redirect HTTP to HTTPS does not work (mod_rewrite)

2013-04-16 Thread Felipe Roman
Hi Igor, Thanks for your help. I replaced the %{SERVER_NAME} by %{HTTP_HOST} but the behavior continue the same. The redirect worked fine when I access http://myhost.com/dashboard I got redirected to https://myhost.com/dashboard but after the redirect the login page does not work anymore... even