[EMAIL PROTECTED] open_basedir and /home/*/public_html

2005-08-05 Thread Bohumil Holubec
Is it possible set php_admin_value open_basedir based on required homepages? Something like: php_admin_value open_basedir /home/%userdir%/public_html when i query http://domain.my/~userdir - The official User-To-User support fo

RE: [users@httpd] limit CONNECT

2005-06-22 Thread Bohumil Holubec
the server level and then the only thing you will need to include in your virtual hosts is: RewriteEngine On RewriteOptions inherit -ascs -Original Message----- From: Bohumil Holubec [mailto:[EMAIL PROTECTED] Sent: Wednesday, June 22, 2005 6:48 PM To: users@httpd.apache.org Subject:

RE: [users@httpd] limit CONNECT

2005-06-22 Thread Bohumil Holubec
can i use mod_rewrite code as common settings? On Wed, 22 Jun 2005, Bohumil Holubec wrote: Im not sure how to use this. Now I have in apache2.conf: RewriteEngine on RewriteLog /var/log/apache2/rewrite.log RewriteCond %{REQUEST_METHOD} =CONNECT RewriteRule .* - [F] server-i

RE: [users@httpd] limit CONNECT

2005-06-22 Thread Bohumil Holubec
%{REQUEST_METHOD} =CONNECT RewriteRule .* - [F] You would need mod_rewrite for this. -ascs -Original Message- From: Bohumil Holubec [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 5:53 PM To: users@httpd.apache.org; Joshua Slive Subject: Re: [EMAIL PROTECTED] limit CONNECT Thank you but in

RE: [users@httpd] logging from cgi

2005-06-22 Thread Bohumil Holubec
] -Original Message- From: Bohumil Holubec [mailto:[EMAIL PROTECTED] Sent: Monday, June 20, 2005 10:33 PM To: users@httpd.apache.org Subject: RE: [EMAIL PROTECTED] logging from cgi files cgi, cgi.1, cgi.2 ... can be create by logrotate daemon (man logrotate) In /etc/logrotate.conf or rather

Re: [users@httpd] limit CONNECT

2005-06-21 Thread Bohumil Holubec
Thank you but in directive it doesnt work and i need that because some providers when i register new web e-mail they testing this connect... On Tue, 21 Jun 2005, Joshua Slive wrote: On 6/21/05, Bohumil Holubec <[EMAIL PROTECTED]> wrote: I allready tried it but with no effects. In a

RE: [users@httpd] limit CONNECT

2005-06-20 Thread Bohumil Holubec
Message- From: Bohumil Holubec [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 2:33 AM To: users@httpd.apache.org Subject: [EMAIL PROTECTED] limit CONNECT I have apache 2.0.54 with PHP4.3.11 and I would like to deny method CONNECT like this: (its on the end of apache2.conf

RE: [users@httpd] logging from cgi

2005-06-20 Thread Bohumil Holubec
files cgi, cgi.1, cgi.2 ... can be create by logrotate daemon (man logrotate) In /etc/logrotate.conf or rather /etc/logrotate.d/mycgi you can write for example: /var/log/cgi { rotate 10 weekly compress missingok } On Mon, 20 Jun 2005, Michael D. Berger wrote:

[users@httpd] limit CONNECT

2005-06-20 Thread Bohumil Holubec
I have apache 2.0.54 with PHP4.3.11 and I would like to deny method CONNECT like this: (its on the end of apache2.conf) Order Deny,Allow Deny from all Now when i try: $ telnet www.somehost.com 80 Trying ###.###.###.###... Connected to www.somehost.com. Escape character is '^]'. C