[us...@httpd] redirect all http to https

2010-04-20 Thread Frank Bonnet
Hello I want to redirect ALL http requests to a virtual host to the https port using the same URL ( except for the protocol side ) Thanks for any info/links - The official User-To-User support forum of the Apache HTTP Server

Re: [us...@httpd] redirect all http to https

2010-04-20 Thread Michael Ni
virtual host *:80 RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R, L] or RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] many ways to do it On Tue, Apr 20, 2010 at 12:55 AM, Frank Bonnet f.bon...@esiee.fr

Re: [us...@httpd] redirect all http to https

2010-04-20 Thread Frank Bonnet
Thanks a lot :-) On 04/20/10 09:59, Michael Ni wrote: virtual host *:80 RewriteEngine On RewriteCond %{HTTPS} !=on RewriteRule ^/(.*) https://%{SERVER_NAME}/$1 [R, L] or RewriteCond %{SERVER_PORT} !^443$ RewriteRule ^/(.*)$ https://%{HTTP_HOST}/$1 [R=301,L] many ways to do it On

Re: [us...@httpd] Reverse proxy question

2010-04-20 Thread alin vasile
Hi, I am unable to set the proxy worker properties (connection pool size etc.) . If I remove my all Proxy Rewrite directives, I still see this in logs: proxy: initialized worker 0 in child 29085 for (*) min=0 max=7 smax=7 How this gets initialized?

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Mauri
Hi expert. I'm sorry for the reply but I'm working for some days with no solution :( I have this scenario: SCENARIO 1) client i.e.7 -- proxy with SSL -- web server in http (I tried https, also) wireshark output (plain text) in attach: file with_proxy.txt I have apache-2.2.3, mod_proxy and

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread alin vasile
what is the activex area in your html? From: Mauri lai...@gmail.com To: users@httpd.apache.org Sent: Tue, April 20, 2010 1:12:15 PM Subject: Re: [us...@httpd] Re: Apache module that enables ActiveX Hi expert. I'm sorry for the reply but I'm working for some

[us...@httpd] Setting up Case insensitive Reverse Proxy

2010-04-20 Thread Arunkumar Janarthanan
Hi, I would like to setup case insensitive reverse proxy for my site which has more than 100 such reverse proxy and the code has the links with different cases in it. As of now I am setting two Reverse PRoxy for such setup as below. ProxyPass /abc/http://www.xyx.com/ABC ProxyPassReverse

RE: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Eli Mazin
Extensive!! Call me on my cell Eliahu(Elie)  Mazin Network Engineer Security Information A+, Network+,Security +,MCSE,MCSA,CCENT  CCNA,CCNP, CISSP  Imperva , Bluecoat and F5 Expert 781 502 8882 Cell Office: 781 560 5995 Email: ema...@verizon.net -Original Message- From: alin vasile

RE: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Eli Mazin
ELIAHU (ELI)MAZIN OFFICE : 781 560 5995 CELL: 781 502 8882 EMAIL: ema...@verizon.net MCSA, MCSE, CCNA, CCNP, CISSP SUMMARY: Senior Cyber Security /Network Security professional with over twenty years of extensive experience in security and in designing and maintaining large scale multi-vendor

[us...@httpd] memory leak (?) when a copy of the ErrorLog is done

2010-04-20 Thread Giuliano Catrambone (CatraSoftware)
Hi, I'm using the httpd apache server and inside the httpd.conf I have the ErrorLog set as: ErrorLog /logs/SystemLogs.trace I'm using also a custom module writing a lot of trace in the ErrorLog using the API like: ap_log_error (__FILE__, __LINE__, APLOG_ERR, 0,

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Mauri
I can't call u, i'm sorry :( any idea,however? 2010/4/20 Eli Mazin ema...@verizon.net Extensive!! Call me on my cell Eliahu(Elie) Mazin Network Engineer Security Information A+, Network+,Security +,MCSE,MCSA,CCENT CCNA,CCNP, CISSP Imperva , Bluecoat and F5 Expert 781 502 8882 Cell

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Eric Covener
On Tue, Apr 20, 2010 at 8:28 AM, Eli Mazin ema...@verizon.net wrote: Html   experience  see under emaz   I am on the road   call me if you need something  on my cel Don't post this garbage on this mailing list. -- Eric Covener cove...@gmail.com

Re: [us...@httpd] loadbalancer not working as expected

2010-04-20 Thread Joaquin Martinez
Igor, thanks a lot for your help. I made the changes yesterday and everything is working as expected now. Bummer, one of the appsrv has the appsvr who was overloaded, this being the reason for all the session going to it. Thanks a lot! On Sun, Apr 18, 2010 at 11:06 PM, Igor Cicimov

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Jason Nunnelley
On 4/20/10 8:06 AM, Eric Covener wrote: On Tue, Apr 20, 2010 at 8:28 AM, Eli Mazinema...@verizon.net wrote: Html experience see under emaz I am on the road call me if you need something on my cel Don't post this garbage on this mailing list. Or, a slightly nicer way to say

Re: [us...@httpd] Re: Apache module that enables ActiveX

2010-04-20 Thread Eric Covener
On Tue, Apr 20, 2010 at 9:16 AM, Jason Nunnelley ja...@jasonn.com wrote: On 4/20/10 8:06 AM, Eric Covener wrote: On Tue, Apr 20, 2010 at 8:28 AM, Eli Mazinema...@verizon.net  wrote: Html   experience  see under emaz   I am on the road   call me if you need something  on my cel Don't

[us...@httpd] Redirect after HTTP Post appears to be corrupting the Get request sent

2010-04-20 Thread Baljeet Nijjhar
Hi I have some pages that are protected i.e. when the user tries to access them after a period of inactivity, they are redirected to a login page, which, if they log in correctly, will take them to the page they were originally requesting. My problem is that if the original page was accessed via

[us...@httpd] Reverse Proxy https to http

2010-04-20 Thread GB GB
Hello, I am trying to configure my proxy to be able to accept HTTPS and forward requests to backend server which is in HTTP user--(https://mydomain.com/abc)-ssl: [reverse proxy]:http---http://backend.ca/8082/abc I want to preserve the URL as https//mydomain.com/abc. I

RE: [us...@httpd] Timestamps of access log entries

2010-04-20 Thread Geoff Millikan
Why not change the timezone on the whole server, not just Apache? smime.p7s Description: S/MIME cryptographic signature

[us...@httpd] security incident and md5/sha1 checksums

2010-04-20 Thread Diego Gomes
Hi, Concerning the security incident recently reported: https://blogs.apache.org/infra/entry/apache_org_04_09_2010 It says that some SVN access was compromised. Does that mean I have to check {md5,sha1}sum of things downloaded during the incident? Will ASF report a new (reliable) list of

Re: [us...@httpd] Reverse proxy - block explicit proxy setup

2010-04-20 Thread alin vasile
I managed to do this with rewrite rules; if the requested host is not on intranet, I'll forbid the request: RewriteRule .* - [F] From: alin vasile alinachegal...@yahoo.com To: users@httpd.apache.org Sent: Mon, April 19, 2010 11:36:23 PM Subject: Re:

Re: [us...@httpd] Rewrite rule rewriting unexpectedly

2010-04-20 Thread Glenn Gillis
Eric Covener wrote, On 4/19/2010 2:59 PM: On Mon, Apr 19, 2010 at 5:44 PM, Glenn Gillis gl...@elaw.org wrote: Would any rewriting gurus out there care to speculate why the rewrite rule: RewriteRule /blog http://spotlight.wordpress.com/; would cause the image URL: img

[us...@httpd] forward requests to apache web server from sun

2010-04-20 Thread Charan
Hi all, I'm not sure whether this is really possible, but I wanted to know whether the below description will work for me or not I want to keep Sun Web server facing internet and keep apache in between sun web server and WebLogic. Is this really possible? Thanks,