Return-Path: Delivered-To: apmail-httpd-users-archive@www.apache.org Received: (qmail 28655 invoked from network); 16 Aug 2006 12:35:59 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 16 Aug 2006 12:35:59 -0000 Received: (qmail 56203 invoked by uid 500); 16 Aug 2006 12:35:48 -0000 Delivered-To: apmail-httpd-users-archive@httpd.apache.org Received: (qmail 56183 invoked by uid 500); 16 Aug 2006 12:35:48 -0000 Mailing-List: contact users-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: users@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list users@httpd.apache.org Received: (qmail 56172 invoked by uid 99); 16 Aug 2006 12:35:47 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 05:35:47 -0700 X-ASF-Spam-Status: No, hits=0.6 required=10.0 tests=NO_REAL_NAME X-Spam-Check-By: apache.org Received-SPF: pass (asf.osuosl.org: local policy) Received: from [203.91.201.23] (HELO wip-cdctls-mx3.wipro.com) (203.91.201.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2006 05:35:46 -0700 Received: from wip-cdctls-mx3.wipro.com (localhost.localdomain [127.0.0.1]) by localhost (Postfix) with ESMTP id A807229C1B6 for ; Wed, 16 Aug 2006 18:05:22 +0530 (IST) Received: from chn-snr-bh1.wipro.com (chn-snr-bh1.wipro.com [10.145.50.91]) by wip-cdctls-mx3.wipro.com (Postfix) with ESMTP id 9B4D329C04D for ; Wed, 16 Aug 2006 18:05:22 +0530 (IST) Received: from HYD-MDP-MBX01.wipro.com ([10.150.50.182]) by chn-snr-bh1.wipro.com with Microsoft SMTPSVC(6.0.3790.1830); Wed, 16 Aug 2006 18:05:22 +0530 x-mimeole: Produced By Microsoft Exchange V6.5 Content-class: urn:content-classes:message MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Date: Wed, 16 Aug 2006 18:05:21 +0530 Message-ID: <20D88322B9D55444A327FEB661C30390020ED1D5@HYD-MDP-MBX01.wipro.com> X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: [users@httpd] Httpd.conf configuration problem Thread-Index: Aca8i6a0/GGJ8XEQTEaYRgDJJiiy2gAbzRtwAAYEy0ABBmQOgA== From: To: X-OriginalArrivalTime: 16 Aug 2006 12:35:22.0488 (UTC) FILETIME=[70FD5780:01C6C130] X-Virus-Checked: Checked by ClamAV on apache.org Subject: RE: [users@httpd] Httpd.conf configuration problem X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Thanks Boyle, My problem resolved in some other way.=0D Any way thanks for your help. -----Original Message----- From: Boyle Owen [mailto:Owen.Boyle@swx.com]=0D Sent: Friday, August 11, 2006 12:34 PM To: users@httpd.apache.org Subject: RE: [users@httpd] Httpd.conf configuration problem =0D > -----Original Message----- > From: rajesh.gannarapu@wipro.com [mailto:rajesh.gannarapu@wipro.com]=0D > Sent: Friday, August 11, 2006 6:03 AM > To: users@httpd.apache.org > Subject: RE: [users@httpd] Httpd.conf configuration problem >=0D >=0D >=0D > Hi, >=0D > I tried in all ways, but facing the same error >=0D >=0D >=0D >=0D > > SSLRequire %{REQUEST_URI} !~ m\/abc\/qwert/ You need to read up on regular expression syntax... Every time you post you show a different string and because you keep faking the strings, I don't know if we're looking at the literal content of the config file or something you typed in quickly that shows what you think it contains... So I've no confidence that what you post is what's in the config.=0D I know the \/\/\ stuff looks confusing but it is essential that everything is there and in the right order. In your example above, you are missing the leading / after the "m" so that won't compile. The pattern should be *exactly* m/\/abc\/qwert/ Perhaps if I explain exactly what the regexp means, taking each character in turn: m - match / - start of match string \ - escape (ie, take literally) the next character / - the leading directory slash) abc - the letters abc \ - escape (ie, take literally) the next character / - the subdir slash qwert - the letters qwert / - end of match string Escaping is necessary because a slash is part of the regexp syntax. So if you want to use a slash in your pattern, you have to tell the compiler to ignore it, hence you escape it with a backslash. Have another go... Rgds, Owen Boyle Disclaimer: Any disclaimer attached to this message may be ignored.=0D > >=0D >=0D >=0D >=0D >=0D >=0D > Starting httpd: Syntax error on line 1066 of=0D > /etc/httpd/conf/httpd.conf: > SSLRequire: parse error >=0D >=0D >=0D >=0D > -- Gannarapu > -----Original Message----- > From: SOPRO [mailto:soprobr@gmail.com] >=0D > Sent: Thursday, August 10, 2006 8:15 PM > To: users@httpd.apache.org > Subject: Re: [users@httpd] Httpd.conf configuration problem >=0D > Gannarapu, >=0D > I guess you have a odd slash after 'm'. >=0D > Try this: >=0D > %{REQUEST_URI} !~ m\/abc\/qwert/ >=0D > Fabricio. >=0D >=0D > 2006/8/10, Boyle Owen : > > > > > > > -----Original Message----- > > > From: rajesh.gannarapu@wipro.com=0D > [mailto:rajesh.gannarapu@wipro.com] > > > Sent: Thursday, August 10, 2006 9:14 AM > > > To: users@httpd.apache.org > > > Subject: RE: [users@httpd] Httpd.conf configuration problem > > > > > > > > > Hi boyle, > > > > > > SSLRequire %{REQUEST_URI} !~ m/\/bam\/qwert > > ^ > > | > > | > > > > > > It is missing a final "/" to close the match-operator. > > > > Rgds, > > Owen Boyle > > Disclaimer: Any disclaimer attached to this message may be ignored. > > > > > > > > I just pasted the line from the httpd.conf file. > > > > > > Could you found some thing wrong in the expression? > > > > > > > > > -- Gannarapu > > > > > > > > > -----Original Message----- > > > From: Boyle Owen [mailto:Owen.Boyle@swx.com] > > > > > > Sent: Thursday, August 10, 2006 12:40 PM > > > To: Rajesh Gannarapu (WT01 - Wireless Networks and Devices) > > > Subject: RE: [users@httpd] Httpd.conf configuration problem > > > > > > > > > > > > > > > > -----Original Message----- > > > > From: rajesh.gannarapu@wipro.com > [mailto:rajesh.gannarapu@wipro.com] > > > > > > > Sent: Thursday, August 10, 2006 5:44 AM > > > > To: users@httpd.apache.org > > > > Cc: Boyle Owen > > > > Subject: RE: [users@httpd] Httpd.conf configuration problem > > > > > > > > > > > > > > > > > > > > > > > > > Hi Boyle, > > > > > > PLease just reply to the list - no need to CC me.. > > > > > > > > > > > > > > When I use the below expression > > > > > > > > > > > %{REQUEST_URI} !~ m/\/abc\/qwert/ > > > > > > > > > > > I got below error > > > > > > > > > > > Starting httpd: Syntax error on line 1066 of > > > > > > > /etc/httpd/conf/httpd.conf: > > > > SSLRequire: Failed to compile regular expression. > > > > > > I don't see anything wrong with this... Please post the exact > > > cut'n'paste of the line from your config - do not edit it. > > > > > > Rgds, > > > Owen Boyle > > > Disclaimer: Any disclaimer attached to this message may=0D > be ignored. > > > > > > > > > > > > > > > > > > > > > > > > Please suggest me the suitable configuration > > > > > > > > > > > > > > > > > > Thanks in advance, > > > > > > > > > > > -- Gannarapu > > > > > > > > > > > > > > > > > > -----Original Message----- > > > > From: Boyle Owen [mailto:Owen.Boyle@swx.com] > > > > > > > > > > > Sent: Thursday, August 03, 2006 7:11 PM > > > > To: users@httpd.apache.org > > > > Subject: RE: [users@httpd] Httpd.conf configuration problem > > > > > > > > > > > > -----Original Message----- > > > > > From: rajesh.gannarapu@wipro.com > > > [mailto:rajesh.gannarapu@wipro.com] > > > > > > > > > > > > Sent: Thursday, August 03, 2006 2:18 PM > > > > > To: users@httpd.apache.org > > > > > Subject: [users@httpd] Httpd.conf configuration problem > > > > > > > > > > > > > > > > > Hi, > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > I have a problem with the configuration of apache web server. > > > > > > > > > > > > > > > > > I used "SSLRequireSSL" directive for the URLS which are only > > > > > > > > > > > > allowed with Https to my application. > > > > > > > > > > > > > > > > > But now my client doesn't want to allow any URL patterns > > > > > > > > > > > > except "/abc/qwert" with Http. > > > > > > > > > > > > > > > > > > > > > > > > I have configured httpd.conf as shown below > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > SSLRequire %{REQUEST_URI} !=3D "/abc/qwert" > > > > > > > > > > > > > > > > > > TRy not using asymmetric quotes; use double quotes, eg: > > > > > > > > > > > %{REQUEST_URI} !=3D "/abc/qwert" > > > > > > > > > > > alternatively, try a perl regexp: > > > > > > > > > > > %{REQUEST_URI} !~ m/\/abc\/qwert/ > > > > > > > > > > > (NB note the "does not match" operator !~) > > > > > > > > > > > Rgds, > > > > Owen Boyle > > > > Disclaimer: Any disclaimer attached to this message may be > ignored. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > But the above configuration is not working. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Please suggest me the suitable configuration. > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > Regards, > > > > > > > > > > > > > > > > > Gannarapu > > > > > > > > > > > > > > > > > > > > > > > > > > > > > The information contained in this electronic message and any > > > > > > > > > > > > attachments to this message are intended for the exclusive > > > > > > > > > > > > use of the addressee(s) and may contain proprietary, > > > > > > > > > > > > confidential or privileged information. If you are not the > > > > > > > > > > > > intended recipient, you should not disseminate, distribute or > > > > > > > > > > > > copy this e-mail. Please notify the sender immediately and > > > > > > > > > > > > destroy all copies of this message and any attachments. > > > > > > > > > > > > > > > > > > > > > > > > WARNING: Computer viruses can be transmitted via email. The > > > > > > > > > > > > recipient should check this email and any attachments for the > > > > > > > > > > > > presence of viruses. The company accepts no liability for any > > > > > > > > > > > > damage caused by any virus transmitted by this email. > > > > > > > > > > > > > > > > > www.wipro.com > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > This message is for the named person's use only. It may contain > > > > confidential, proprietary or legally privileged information. No > > > > confidentiality or privilege is waived or lost by any > > > mistransmission. > > > > If you receive this message in error, please notify the > > > > > > > sender urgently > > > > and then immediately delete the message and any copies of > > > it from your > > > > system. Please also immediately destroy any hardcopies of > > > the message. > > > > You must not, directly or indirectly, use, disclose, > > > > > > > distribute, print, > > > > or copy any part of this message if you are not the intended > > > > > > > recipient. > > > > The sender's company reserves the right to monitor all e-mail > > > > communications through their networks. Any views=0D > expressed in this > > > > message are those of the individual sender, except where the > message > > > > states otherwise and the sender is authorised to state them > > > to be the > > > > views of the sender's company. > > > > > > > > > > > > > > > --------------------------------------------------------------------- > > > > The official User-To-User support forum of the Apache=0D > HTTP Server > > > > Project. > > > > See for more info. > > > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > > > " from the digest:=0D > users-digest-unsubscribe@httpd.apache.org > > > > For additional commands, e-mail: users-help@httpd.apache.org > > > > > > > > > > > > > > > > > > > > > > > > > The information contained in this electronic message and any > > > > > > > attachments to this message are intended for the exclusive > > > > > > > use of the addressee(s) and may contain proprietary, > > > > > > > confidential or privileged information. If you are not the > > > > > > > intended recipient, you should not disseminate, distribute or > > > > > > > copy this e-mail. Please notify the sender immediately and > > > > > > > destroy all copies of this message and any attachments. > > > > > > > > > > > > > > > > > > WARNING: Computer viruses can be transmitted via email. The > > > > > > > recipient should check this email and any attachments for the > > > > > > > presence of viruses. The company accepts no liability for any > > > > > > > damage caused by any virus transmitted by this email. > > > > > > > > > > > > > > > > > > www.wipro.com > > > > > > > > > > > > > > > > The information contained in this electronic message and any > > > attachments to this message are intended for the exclusive > > > use of the addressee(s) and may contain proprietary, > > > confidential or privileged information. If you are not the > > > intended recipient, you should not disseminate, distribute or > > > copy this e-mail. Please notify the sender immediately and > > > destroy all copies of this message and any attachments. > > > > > > > > > WARNING: Computer viruses can be transmitted via email. The > > > recipient should check this email and any attachments for the > > > presence of viruses. The company accepts no liability for any > > > damage caused by any virus transmitted by this email. > > > > > > > > > www.wipro.com > > > > > > > --------------------------------------------------------------------- > > > The official User-To-User support forum of the Apache HTTP > > > Server Project. > > > See for more info. > > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > > For additional commands, e-mail: users-help@httpd.apache.org > > > > > > >=0D > --------------------------------------------------------------------- > > The official User-To-User support forum of the Apache HTTP Server > Project. > > See for more info. > > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > > " from the digest: users-digest-unsubscribe@httpd.apache.org > > For additional commands, e-mail: users-help@httpd.apache.org > > > > >=0D > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP Server > Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org >=0D >=0D >=0D > The information contained in this electronic message and any=0D > attachments to this message are intended for the exclusive=0D > use of the addressee(s) and may contain proprietary,=0D > confidential or privileged information. If you are not the=0D > intended recipient, you should not disseminate, distribute or=0D > copy this e-mail. Please notify the sender immediately and=0D > destroy all copies of this message and any attachments. >=0D >=0D > WARNING: Computer viruses can be transmitted via email. The=0D > recipient should check this email and any attachments for the=0D > presence of viruses. The company accepts no liability for any=0D > damage caused by any virus transmitted by this email. >=0D >=0D > www.wipro.com >=0D > --------------------------------------------------------------------- > The official User-To-User support forum of the Apache HTTP=0D > Server Project. > See for more info. > To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org > " from the digest: users-digest-unsubscribe@httpd.apache.org > For additional commands, e-mail: users-help@httpd.apache.org >=0D --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org The information contained in this electronic message and any attachments to= this message are intended for the exclusive use of the addressee(s) and= may contain proprietary, confidential or privileged information. If you= are not the intended recipient, you should not disseminate, distribute or= copy this e-mail. Please notify the sender immediately and destroy all= copies of this message and any attachments.=0D WARNING: Computer viruses can be transmitted via email. The recipient= should check this email and any attachments for the presence of viruses.= The company accepts no liability for any damage caused by any virus= transmitted by this email. =0D www.wipro.com --------------------------------------------------------------------- The official User-To-User support forum of the Apache HTTP Server Project. See for more info. To unsubscribe, e-mail: users-unsubscribe@httpd.apache.org " from the digest: users-digest-unsubscribe@httpd.apache.org For additional commands, e-mail: users-help@httpd.apache.org