Re: [us...@httpd] SuExec

2010-02-03 Thread Thomas Antony
Now I have a common drupal codebase located at /srv/htdocs/drupal I am using this kind of setup - http://drupal.org/node/124268 Only difference being all user directories are at /srv/htdocs as suexec docroot is /srv. Now the problem is FastCGI. FastCGISuexec has been configured. at /srv/

Re: [us...@httpd] SuExec

2010-02-02 Thread Thomas Antony
On 02/03/2010 12:11 PM, Gary Smith wrote: They should not be able to use the default site's /files directory but /sites//files Any ideas ? According to suExec docs, target file must be owned by the user and group specified in SuExecUserGroup directive. But this is not possible here. /srv/h

Re: [EMAIL PROTECTED] More than one SSL Certificate/Virtual Host

2008-04-17 Thread Thomas Antony
Is there something I am missing? Yes. You must use IP based virtual hosts. It is only possible to have one cert on one ip on one port. You can add another ip or configure each virtual host on a different port (443, 444,...) on one ip. You can also configure one cert for all virtual host

Re: [EMAIL PROTECTED] Which user to run?

2008-04-13 Thread Thomas Antony
Hello, in the default configurations I know apache runs as a dedicated users (e.g. www). This user has no login shell set thus it is impossible to login as this user and it usually has no home dir set either. With my setup I have an (human) user hat has a login shell and homedir. This users

Re: [EMAIL PROTECTED] SMTP server

2008-03-09 Thread Thomas Antony
so does it exist a free SMTP server (similar that linux daemon) but running on windows XP ? if yes, where can i find it and what steps should i perform to be sure my emails are sent ? i do not want to transfer all my web application each time i want to test email sending... i would like

Re: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
Because HTTPS and HTTP are two different protocols. HTTPS is a protocol that encapsulates HTTP. That is, when you type in an HTTPS URL in a browser, it first tries to establish an SSL-session with the server's mod_ssl engine. Once that's up, the browser and server then use HTTP in the normal wa

Re: [EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
Hi, This works. Is there a technical reason why i need 2 virtual hosts instead of one? Is it safe that both virtual hosts share the same log files? You need to create 2 virtual hosts: one for port 80 where SSL is NOT enabled, and one on port 443 where SSL is enabled. You will also need two

[EMAIL PROTECTED] plain HTTP to an SSL-enabled server port

2007-12-10 Thread Thomas Antony
gards, Thomas Antony - The official User-To-User support forum of the Apache HTTP Server Project. See http://httpd.apache.org/userslist.html> for more info. To unsubscribe, e-mail: [EMAIL PROTECTED] " from the digest: [EM

Re: [EMAIL PROTECTED] How can I limit access only to specific URLs?

2007-09-24 Thread Thomas Antony
I have a website (virtual server) and many DNS aliases pointed to the same server. But I have some directory which should be accessible only via specific DNS alias (== URL). If/How this can be done? E.g, I have a.example.com, b.example.com, c.example.com pointed to the same virtualhost. And

Re: [EMAIL PROTECTED] Newbie Help, Please

2006-12-09 Thread Thomas Antony
Am Samstag, den 09.12.2006, 09:13 + schrieb Steve Swift: > Each time you add a new place in your filesystem that will be > referenced by apache, such as the DocumentRoot statement inside your > virtual hosts blocks, you nearly always have to add a > statement permitting access to that place.

Re: [EMAIL PROTECTED] VirtualHost problems

2006-12-09 Thread Thomas Antony
> Listen 80 > NameVirtualHost 1.2.3.4:80 > > > DocumentRoot /home/os/html/domain1 > ServerName www.domain1.com > > > > DocumentRoot /home/os/html/domain2 > ServerName www.domain2.co.uk > > Hi, Which version of apache do you have installed? What value does the ServerName directive for the

Re: [EMAIL PROTECTED] ServerName directive in a VirtualHost container

2006-11-22 Thread Thomas Antony
you try to access bfc11.venuslabs.int from the web server. Remove bfc11.venuslabs.int from the line which starts with ::1. Your virtual host bfc11.venuslabs.int listen on 192.168.1.11 and not 127.0.0.1. kind regards Thomas Antony --