[us...@httpd] Closed: [us...@httpd] cannot get UserDir to work

2011-01-02 Thread Jeff Shearer
William, Thanks for you help. I didn't catch the need for the tilde before your email. I also found a complete UserDir configuration that is a part of the FreeBSD Apache implementation that worked liked a charm. == Jeff Shearer, CISA, CISSP -Original Message-

[us...@httpd] Adding multiple keys and cert to a virtual host

2011-01-02 Thread Mohit Anchlia
Apache 2: I have a need to add multiple certs and keys to a given virtual host. I don't see a way to add multiple keys or certs to one virtual host. For eg: key and cert for abc.com and def.com in VirtualHost 10.10.10.101:80 Is there a way to do this? For java security for eg we use keytool. Can

Re: [us...@httpd] Adding multiple keys and cert to a virtual host

2011-01-02 Thread Eric Covener
On Sun, Jan 2, 2011 at 2:21 PM, Mohit Anchlia mohitanch...@gmail.com wrote: Apache 2: I have a need to add multiple certs and keys to a given virtual host. I don't see a way to add multiple keys or certs to one virtual host. For eg: key and cert for abc.com and def.com in VirtualHost

[users@httpd] mod_rewrite and UserDir

2011-01-02 Thread Michelle Konzack
Hello and Happy New Year, since I am in war with mod_rewrite, can someone help me to solv following problem: 1) my /index.php which drive the entired Website should be untouche 2) untouche any URLs like /?what=... what I have to rewrite are the 3) /~some.user/ to /some.user/, mean

Re: [us...@httpd] Adding multiple keys and cert to a virtual host

2011-01-02 Thread Mohit Anchlia
On Sun, Jan 2, 2011 at 12:59 PM, Eric Covener cove...@gmail.com wrote: On Sun, Jan 2, 2011 at 2:21 PM, Mohit Anchlia mohitanch...@gmail.com wrote: Apache 2: I have a need to add multiple certs and keys to a given virtual host. I don't see a way to add multiple keys or certs to one virtual

[us...@httpd] Re: mod_rewrite and UserDir

2011-01-02 Thread Michelle Konzack
Hahaha I must reply to my self! I have forgotten, that wiki.apache.org exist, which hast EXACTLY what I need. Thanks, Greetings and nice Day/Evening Michelle Konzack -- # Debian GNU/Linux Consultant ## Development of Intranet and Embedded Systems

[users@httpd] wildcard domains do not work

2011-01-02 Thread Michelle Konzack
Hello, while following script which remove the TILDE is working [ '/srv/APACHE_enabled/samba3.private.tamay-dogan.net' ] VirtualHost 192.168.0.69:80 ServerName samba3.private.tamay-dogan.net snip RewriteEngine On RewriteCond /home/$1 -d

Re: [users@httpd] wildcard domains do not work

2011-01-02 Thread Joost de Heer
RewriteCond /home/$1 -d RewriteRule ^/([^/]+)/(.*) /home/$1/public_html/$2 snip /VirtualHost except I like to have a RedirectMatch 301 ... which I do not know how it works,