RE: [EMAIL PROTECTED] is there any include or reference mechanism in apache to store common entries somewhere and include them in virtualhost

2008-08-22 Thread likai
Thanks to Krist. That's exactly what I want. > Date: Fri, 22 Aug 2008 11:09:16 +0200 > From: [EMAIL PROTECTED] > To: users@httpd.apache.org > Subject: Re: [EMAIL PROTECTED] is there any include or reference mechanism in > apache to store common entries somewhere and include them in virtualhost

Re: [EMAIL PROTECTED] Problem with configs

2008-08-22 Thread William A. Rowe, Jr.
Joseph S D Yao wrote: I have just joined this mailing list, but a Google indicates that this topic has not come up before. If I am wrong, I apologize, and ask for a pointer. Good way to attract attention of lurkers :) I understand that the argument to the Proxy directive is supposed to be a

[EMAIL PROTECTED] Problem with configs

2008-08-22 Thread Joseph S D Yao
Apache httpd users mailing list, I have just joined this mailing list, but a Google indicates that this topic has not come up before. If I am wrong, I apologize, and ask for a pointer. I understand that the argument to the Proxy directive is supposed to be a shell-style wildcard (rather than a s

[EMAIL PROTECTED] How to write the RewriteRule

2008-08-22 Thread kohanm
Hi, I installed apache2.2 on Linux and i included the LoadModule rewrite_module in the "httpd.conf" file. I want to write a rule with RewriteRule that redirects this URL http://mydomain.com/&tip=variables¶m=calling/data.do to: http://mydomain.com/calling/data.do&tip=variables and also when

[EMAIL PROTECTED] help with a reverse proxy configuration

2008-08-22 Thread juan romero
hi users First I want to apologize if my questions are so stupid, I'm new with Apache. I'mĀ  configuring a reverse proxy, I took the basic configuration from http://www.apachetutor.org/admin/reverseproxies. Below my actual httpd.conf file *

RE: [EMAIL PROTECTED] [EMAIL PROTECTED] Virtual Host not enough ?

2008-08-22 Thread EJMcLeod
I'm retarded I just read that thanks. (Embedded image moved to file: pic26500.jpg) "Roberto" <[EMAIL PROTECTED]

RE: [EMAIL PROTECTED] [EMAIL PROTECTED] Virtual Host not enough ?

2008-08-22 Thread Roberto
ServerName www.yourdomain.com ServerAlias yourdomain.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Friday, August 22, 2008 12:08 PM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] [EMAIL PROTECTED] Virtual Host not enough ? Hey Guys First thanks

[EMAIL PROTECTED] [EMAIL PROTECTED] Virtual Host not enough ?

2008-08-22 Thread EJMcLeod
Hey Guys First thanks for any help that you send my way. In virtual host I would like to be able to get past the problem that occurs when somebody is too lazy to type www. in front of the site address. Which as you probably have already figured out means that the virtual host directs the site t

Re: [EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Eric Covener
On Fri, Aug 22, 2008 at 9:43 AM, Valerio Pachera <[EMAIL PROTECTED]> wrote: > 2008/8/22 Eric Covener <[EMAIL PROTECTED]>: >>> Why in the second case "SetHandleer" is used instead of "Addhandler" ? >> >> Because the second option already has a cgi-bin/ subdirectory on the >> URL -- so everyhting sho

Re: [EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Valerio Pachera
2008/8/22 Eric Covener <[EMAIL PROTECTED]>: >> Why in the second case "SetHandleer" is used instead of "Addhandler" ? > > Because the second option already has a cgi-bin/ subdirectory on the > URL -- so everyhting should be treated as CGI not just certain files. Ok, by your answer and re-reading t

Re: [EMAIL PROTECTED] Basic Auth Login Retries

2008-08-22 Thread mdn teo
This is why I want to redirect browsers after the first failed login, when they get 401: Following this howto: http://httpd.apache.org/docs/2.0/ssl/ssl_howto.html i setup authentication to my secure area, I used a configuration like the "howto", I wrote my subjectDN in the "httpd.passwd" with th

Re: [EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Eric Covener
On Fri, Aug 22, 2008 at 3:11 AM, Valerio Pachera <[EMAIL PROTECTED]> wrote: > Corret me if I'm wrong: > > > rule1 > > > > rule2 > > > rule1 is still valid for directory /a. yes, and maybe for /a/b depending on how rule1 and rule2 relate to eachother. -- Eric Covener [EMAIL PROTECTED] --

Re: [EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Eric Covener
On Fri, Aug 22, 2008 at 3:53 AM, Valerio Pachera <[EMAIL PROTECTED]> wrote: > In the apache.conf of debian lenny there's not the DocumentRoot > directive but I know it to be /var/www. > Is that an option given at compile time or is it stored somewhere else? > > Thanks. > > -

Re: [EMAIL PROTECTED] Generic questions about apache configuration

2008-08-22 Thread Eric Covener
On Fri, Aug 22, 2008 at 2:45 AM, Valerio Pachera <[EMAIL PROTECTED]> wrote: > http://httpd.apache.org/docs/2.2/sections.html > quote: > The directive need not have anything to do with the > filesystem. For example, the following example shows how to map a > particular URL to an internal Apache han

Re: [EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Eric Covener
On Fri, Aug 22, 2008 at 7:51 AM, Valerio Pachera <[EMAIL PROTECTED]> wrote: > http://httpd.apache.org/docs/2.2/howto/cgi.html > To allow CGI program execution for any file ending in .cgi in users' > directories, you can use the following configuration. > > > Options +ExecCGI > AddHandler cgi-scri

[EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Valerio Pachera
http://httpd.apache.org/docs/2.2/howto/cgi.html I do not understand the paragrph "User directories": quote: To allow CGI program execution for any file ending in .cgi in users' directories, you can use the following configuration. Options +ExecCGI AddHandler cgi-script .cgi If you wish design

Re: [EMAIL PROTECTED] is there any include or reference mechanism in apache to store common entries somewhere and include them in virtualhost

2008-08-22 Thread Krist van Besien
2008/8/22 likai <[EMAIL PROTECTED]>: > Hi, > > Right now, in my httpd.conf I have two sets of virtualhosts for two IPs. I > just made a copy of the first one and change the IP to another. > By doing this, I created a lot of duplicated entries. Probably mod_macro is what you need. Krist -- [EMAI

[EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Valerio Pachera
In the apache.conf of debian lenny there's not the DocumentRoot directive but I know it to be /var/www. Is that an option given at compile time or is it stored somewhere else? Thanks. - The official User-To-User support forum of

[EMAIL PROTECTED] Re: Generic questions about apache configuration

2008-08-22 Thread Valerio Pachera
Corret me if I'm wrong: rule1 rule2 rule1 is still valid for directory /a. - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscri