Re: [EMAIL PROTECTED] seperate vhost files for each domain

2008-06-25 Thread Scott Courtney
pache2 package under Debian, a sensible default vhost config file is appropriately named during installation. Scott -- Scott Courtney <[EMAIL PROTECTED]> Sine Nomine Associates - The official User-To-User support foru

RE: [EMAIL PROTECTED] Not finding the port to HTTPS

2008-06-20 Thread Scott Courtney
ot; and then "lan" as being the argument to the "-p" parameter. For my version (Debian Linux), "-p" means show the processes owning the sockets. Try just "netstat -n | grep :443" and see if that works better. Sor

Re: [EMAIL PROTECTED] Not finding the port to HTTPS

2008-06-20 Thread Scott Courtney
hat are available to any user. You can also use "netstat -plan | grep :443" to see if some other daemon is listening already on port 443, but I think the most likely cause is that you didn't start the daemon from root. The "permission denied" message probably means exactly

Re: [EMAIL PROTECTED] calls "script" TWICE!!!

2008-06-20 Thread Scott Courtney
en the form is submitted. To do HTTP responses directly, you will need to take more control of the HTTP transaction than what is the default mode in some scripting languages. The mechanisms for doing this depend on your choice of scripting language, and some languages have more than one way to do

Re: [EMAIL PROTECTED] mod_ssl: creating self signed certificate on apache for multiple domains

2008-06-12 Thread Scott Courtney
't accept an empty passphrase on cert creation, but will let you remove it later. Scott -- Scott Courtney <[EMAIL PROTECTED]> Sine Nomine Associates - The official User-To-User support forum of the Apache HTTP Ser

Re: [EMAIL PROTECTED] mod_ssl: creating self signed certificate on apache for multiple domains

2008-06-12 Thread Scott Courtney
here, so check this page (or Google for a similar page) for details: http://www.madboa.com/geek/openssl/#key-removepass Kind regards, Scott -- Scott Courtney <[EMAIL PROTECTED]> Sine Nomine Associates - The offic

Re: [EMAIL PROTECTED] Clustering

2008-05-22 Thread Scott Courtney
On Thursday 22 May 2008 08:24:07 Ch Praveena wrote: > But there the serialization is neither with Tomcat nor with my > application. Its a problem with Echo2 framework basically. You can see the > stack trace here.. http://rifers.org/paste/show/7354. > I have used echo2 and hibernate to write my app

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

2008-04-17 Thread Scott Courtney
On Thursday 17 April 2008 11:05:11 Ray Van Dolson wrote: > You can only have one SSL site per IP address. However, you can work around this by using a wildcard SSL certificate if all the vhosts are in the same second-level domain, e.g., foo.example.com, bar.example.com, and www.example.com can all

Re: [EMAIL PROTECTED] RSS Feeds

2008-04-04 Thread Scott Courtney
On Friday 04 April 2008 09:35:42 Grant Peel wrote: > That was my priginal question : Does apache (or php for that matter) need > any special knobs turned to allow and support RSS feeds? Just the proper content type declarations, which I believe are in the default configuration anyway. Scott --

Re: [EMAIL PROTECTED] RSS Feeds

2008-04-03 Thread Scott Courtney
On Thursday 03 April 2008 11:27:28 Dragon wrote: > If so, you need an application that will do that and a source of > content for the feeds. Beyond that, I have no idea how to set it up > (that's application dependent, I am sure) or even where to find such > an application (though Google should

Re: [EMAIL PROTECTED] xml

2008-03-25 Thread Scott Courtney
On Tuesday 25 March 2008 10:18:07 Melanie Pfefer wrote: > hello > > the page property is when I right-click on the IE page > and click on "page property" > > from a linux server: > Content-Type: text/plain > > I suspect that some configuration is overriding this > AddType. Could it be that cause

Re: [EMAIL PROTECTED] xml

2008-03-25 Thread Scott Courtney
On Tuesday 25 March 2008 09:55:16 Melanie Pfefer wrote: > the page property is Firefox Document (should be xml > document) I'm not sure what you mean by the "page property". Have you looked at the HTTP response headers to see what's actually being sent down to your system? If you just ask the brow

Re: [EMAIL PROTECTED] xml

2008-03-25 Thread Scott Courtney
On Tuesday 25 March 2008 08:06:38 Melanie Pfefer wrote: >     AddType text/html .xml > AddType text/xml .xml > AddType application/xml .xml Someone correct me if I'm wrong, but I believe this is going to cause ambiguity. Apache can't send down three Content-type headers for one file. You probably

Re: [EMAIL PROTECTED] Server Side Include (SSI) is slower than PHP ?

2008-02-18 Thread Scott Courtney
On Monday 18 February 2008 02:49:09 howard chen wrote: > I was surprised that PHP is faster, i.e. > > ab -n 2000 -c 10  http://localhost/benchmark.php => 99 reqs/sec > ab -n 2000 -c 10  http://localhost/benchmark.shtml => 61 reqs/sec > > my PHP version is 5.2.5, and even don't have any code cache

Re: [EMAIL PROTECTED] Send e-mail with PHP and qmail mta in a CHROOT Jail

2007-11-14 Thread Scott Courtney
On Wednesday 14 November 2007 07:48, Sergey Avdushkin wrote: > Last time I checked, it didn`t work in Linux at all. H...Perhaps I was mis-recalling. > > He could use SSMTP (i.e. http://packages.debian.org/stable/mail/ssmtp). > This small app emulates sendmail & acts like a mail proxy -- all

Re: [EMAIL PROTECTED] Send e-mail with PHP and qmail mta in a CHROOT Jail

2007-11-14 Thread Scott Courtney
On Wednesday 14 November 2007 07:18, Carlos Eduardo Maiolino wrote: > I need use the mail() function in php. Have you tried setting up mail() so that it uses SMTP over TCP/IP rather than trying to call the sendmail shell command? http://www.php.net/manual/en/ref.mail.php The documentation says t

Re: [EMAIL PROTECTED] SSL pass phrase

2007-10-16 Thread Scott Courtney
On Tuesday 16 October 2007 14:40, Scott Courtney wrote: > $ openssl -in foo.temp -out foo.key Sorry -- that should be: $ openssl rsa -in foo.temp -out foo.key Scott -- - Scott D. COURTNEY, Principal Engin

Re: [EMAIL PROTECTED] SSL pass phrase

2007-10-16 Thread Scott Courtney
On Tuesday 16 October 2007 13:11, Tony Heal wrote: > This is a problem if I have a power loss as apache will wait in the > background until it receives a pass phrase. Is there a way around this > without regenerating the server.key? Yes, there is. The "openssl" command line utility won't let you

Re: [EMAIL PROTECTED] Re: Environment variables missing from httpd 2.2 installation

2007-09-27 Thread Scott Courtney
On Wednesday 26 September 2007 03:59, Neville Hillyer wrote: > I have not read all of your post but I am aware that Apache's support of > many accepted environmental variables is exceedingly poor. The following is > taken from an earlier post of mine: > > Mounting the following file allows any b

[EMAIL PROTECTED] Environment variables missing from httpd 2.2 installation

2007-09-25 Thread Scott Courtney
Greetings! I've been running Apache web sites for years, but until now had never needed to reference environment variables inside the configuration files. I'm trying to set up a load balancing configuration using mod_proxy_balancer under Apache 2.2.3 (stock install under Debian Etch). My enabled