RE: [us...@httpd] HTTP over PPPoE???

2010-01-19 Thread ChiaTzung Liu
Thanks for your reply. I don't think the problem is in Router. Because if I use the other PC with WebServer, all of transactions between Server and Client is correct. -Original Message- From: David Balažic [mailto:xerc...@gmail.com] Sent: Saturday, January 16, 2010 9:57 PM To: users@htt

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Eric Covener
On 1/19/10, Jonathan Zuckerman wrote: > I'm pretty sure nobody wants this to turn into a mod_rewrite solve-it-for-me > mailing list. We only give out the magic incantations on IRC. -- Eric Covener cove...@gmail.com - The offic

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Jonathan Zuckerman
On Tue, Jan 19, 2010 at 2:42 PM, Peter J Milanese wrote: > As stated previously, RewriteRule is NOT the proper directive, and does not > see the hostname. > > RewriteCond will act as a filter for the hostname. > RewriteRule will not accomplish what you want, or whatever we 'think' you > want. It d

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Peter J Milanese
As stated previously, RewriteRule is NOT the proper directive, and does not see the hostname. RewriteCond will act as a filter for the hostname. RewriteRule will not accomplish what you want, or whatever we 'think' you want. It does not know anything about hostname. P - Original Message

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
On 19-Jan-10 17:16, Peter J Milanese wrote: Have to throw in something here. Tom gave you the right answers. What exactly is 'one of those'? RTFM is not always the "right" answer to the question asked. The list is comprised of good questions and answers. Not part time employees :) My effort

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Peter J Milanese
Have to throw in something here. Tom gave you the right answers. What exactly is 'one of those'? The list is comprised of good questions and answers. Not part time employees :) - Original Message - From: Reese [howel...@inkworkswell.com] Sent: 01/19/2010 05:05 PM EST To: users@httpd.a

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
On 19-Jan-10 10:33, Tom Evans wrote: RewriteRules operate over the part of the URL after the host and before the query string, so you would be wanting to try out RewriteCond. See http://httpd.apache.org/docs/2.2/mod/mod_rewrite.html#rewriterule , in particular the section labelled 'What is matc

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Scott Gifford
On Tue, Jan 19, 2010 at 6:55 AM, Nilesh Govindarajan wrote: > > Oops. My bad. SSL protocol doesn't give the Host: header. So apache can't > decide which Vhost to serve (from apache docs :D). > Though SSL doesn't itself provide a Host: header, the HTTP session on top if it still does, so if you ca

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
On 19-Jan-10 15:23, Oliver Schoenborn wrote: Well, I was going to make an attempt, but with that kind of attitude, doesn't feel right, regardless of how frustratring or voodoo'ish the docs are. My apologies to you, whether you actually make an attempt or not. It's frustrating, when you are ne

RE: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Oliver Schoenborn
Reese wrote: > > It tells me that the part after the host (I want to change the host > name) and the part after the query string (that I'm not using if I > understand the usage) are tips of the iceberg. And that is the part > I'm trying to understand. And neither Tom nor you are helping. > > Did I

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
On 19-Jan-10 14:57, Eric Covener wrote: Tom pointed you to the FAQ that makes your rule appear to be a no-op and even took the time to restate it in-line. What, this? RewriteRules operate over the part of the URL after the host and before the query string, so you would be wanting to try ou

Re: [us...@httpd] outdated ssl cert

2010-01-19 Thread János Löbb
On Jan 16, 2010, at 11:58 AM, Vadkan Jozsef wrote: what does a self-signed outdated ssl cert worth? [https] could it be tricked [https] in a way, that the end user will not recognize? [e.g. he already accepted the cert one time, and the browser would warn her, if it been ""attacked""?] ..I

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Eric Covener
On 1/19/10, Reese wrote: > > > RewriteRule ^(www\.)?domain\.ext/subdomain/(.*)$ > > > subdomain\.domain\.ext/$2 > > RewriteRules operate over the part of the URL after the host and > > before the query string, so you would be wanting to try out > > RewriteCond. > > > > > See > http://httpd.apac

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
It looks like that one escaped before I was finished replying. My apologies. I suggested this: RewriteEngine On RewriteRule ^(www\.)?domain\.ext/subdomain/(.*)$ subdomain\.domain\.ext/$2 [R=301,L] On 19-Jan-10 10:33, Tom Evans wrote: RewriteRules operate over the part of the URL after th

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
I suggested this: RewriteEngine On RewriteRule ^(www\.)?domain\.ext/subdomain/(.*)$ subdomain\.domain\.ext/$2 [R=301,L] On 19-Jan-10 10:33, Tom Evans wrote: RewriteRules operate over the part of the URL after the host and before the query string, so you would be wanting to try out RewriteCo

[us...@httpd] speaking url is not working inside subfolder

2010-01-19 Thread J. Bakshi
Dear list, I like to utilize my hosting space with multiple domains. one of these domain is for typo3 sites. So I have created folders inside public_html to have individual site. I am using .htaccess to redirect the domain to its concerned subfolder. There is a folder called TYPO3 inside which th

Re: [us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Tom Evans
On Tue, Jan 19, 2010 at 2:47 PM, Reese wrote: > Hi everyone, > > We're experiencing some difficulty that I'm not entirely sure of > the origin of. Most URLs to content in a subdomain link through > the subdomain, but a few are linking a subdirectory of the main > domain instead > > domain.ext/subd

[us...@httpd] Rewrite Voodoo pt. 2

2010-01-19 Thread Reese
Hi everyone, We're experiencing some difficulty that I'm not entirely sure of the origin of. Most URLs to content in a subdomain link through the subdomain, but a few are linking a subdirectory of the main domain instead domain.ext/subdirectory/content.ext (the few) subdomain.ext/content.ext (th

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread dinar qorbanof
hello. 2010/1/19 Nilesh Govindarajan : > . > > Oops. My bad. SSL protocol doesn't give the Host: header. So apache can't > decide which Vhost to serve (from apache docs :D). > >.. i think may be apache could if coded little other way, may be more correctly. i have written about that in bu

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Nilesh Govindarajan
On 01/19/2010 01:32 PM, Igor Cicimov wrote: As far as i know apache doesnt support name virtual hosting up to 2.2.13 or 2.2.14 not exactly sure. And after that supports it but only with SII. On Jan 19, 2010 6:41 PM, "Nilesh Govindarajan" mailto:li...@itech7.com>> wrote: On 01/19/2010 12:52 PM,

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Edgar Frank
> 2010/01/19 Edgar Frank > > 2010/01/19 Nasir Zia > > can anyone tell me can i run my two different SSL domains ex: > > abc.com and xyz.com on one IP address or i need second IP > > address to the server. > > what you're looking for is an Apache >= 2.2.12 and an > SNI-enabled mod_ssl. Oh, I meant

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Edgar Frank
> 2010/01/19 Nasir Zia > can anyone tell me can i run my two different SSL domains ex: > abc.com and xyz.com on one IP address or i need second IP > address to the server. Hi Nasir, what you're looking for is an Apache >= 2.2.12 and an SNI-enabled mod_ssl. This also imposes restrictions on used

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Igor Cicimov
I mean SSL name virtual hosts... On Jan 19, 2010 7:02 PM, "Igor Cicimov" wrote: As far as i know apache doesnt support name virtual hosting up to 2.2.13 or 2.2.14 not exactly sure. And after that supports it but only with SII. > > On Jan 19, 2010 6:41 PM, "Nilesh Govindarajan" wrote: > > On 01

Re: [us...@httpd] can we run two SSL domains on one IP

2010-01-19 Thread Igor Cicimov
As far as i know apache doesnt support name virtual hosting up to 2.2.13 or 2.2.14 not exactly sure. And after that supports it but only with SII. On Jan 19, 2010 6:41 PM, "Nilesh Govindarajan" wrote: On 01/19/2010 12:52 PM, Nasir Zia wrote: > > > Hi, > > can anyone tell me can i run my two dif