Re: Apache ssl startup

2006-03-22 Thread Rajarajan Rajamani
On Wed, Mar 22, 2006 at 07:57:24AM -0900, Beech Rintoul wrote:
 I'm trying to get apache2 to start at boot in ssl mode. After reading through 
 the rc.d script I put apache2ssl_enable=YES in /etc/rc.conf, but it 
 doesn't work. What is the proper way to start the server at boot?
 
 The machine is running 6.1-PRERELEASE.
 
 Beech

Is apache compiled with ssl ? Otherwise you can portupgrade it 

portupgrade -m -DWITH_SSL_MODULES apache

RR

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl startup

2006-03-22 Thread Beech Rintoul
On Wednesday 22 March 2006 09:13, Rajarajan Rajamani wrote:
 On Wed, Mar 22, 2006 at 07:57:24AM -0900, Beech Rintoul wrote:
  I'm trying to get apache2 to start at boot in ssl mode. After reading
  through the rc.d script I put apache2ssl_enable=YES in /etc/rc.conf,
  but it doesn't work. What is the proper way to start the server at boot?
 
  The machine is running 6.1-PRERELEASE.
 
  Beech

 Is apache compiled with ssl ? Otherwise you can portupgrade it

 portupgrade -m -DWITH_SSL_MODULES apache

Yes ssl is fully working. I just have to start it manually. I need to find how 
to start it in that mode at boot. Normal mode works fine with 
apache2_enable=YES at boot.

Beech

-- 

---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Mangohealth
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - XanGo - http://www.mangohealth.org
---













pgpEpHOJvZLRz.pgp
Description: PGP signature


Re: Apache ssl startup

2006-03-22 Thread Robert Huff

Beech Rintoul writes:

  Yes ssl is fully working. I just have to start it manually. I
  need to find how to start it in that mode at boot. Normal mode
  works fine with apache2_enable=YES at boot.

Let me summarize for my own benefit:

1) when you put apache2_enable=YES in /etc/rc.conf and
reboot, nothing happens.
2) when you run /usr/local/etc/rc.d/apache22.sh start
manually ... 
3) when you run /usr/local/sbin/httpd arguements, apache
starts.

Have I misunderstood?
And what are the applicable contents of /var/log/httpd-*.log?


Robert Huff



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl startup

2006-03-22 Thread Beech Rintoul
On Wednesday 22 March 2006 11:19, Robert Huff wrote:
 Beech Rintoul writes:
   Yes ssl is fully working. I just have to start it manually. I
   need to find how to start it in that mode at boot. Normal mode
   works fine with apache2_enable=YES at boot.

   Let me summarize for my own benefit:

   1) when you put apache2_enable=YES in /etc/rc.conf and
   reboot, nothing happens.
   2) when you run /usr/local/etc/rc.d/apache22.sh start
   manually ... 
   3) when you run /usr/local/sbin/httpd arguements, apache
   starts.

   Have I misunderstood?
   And what are the applicable contents of /var/log/httpd-*.log?

When I put apache2_enable=YES in rc.conf it starts in normal mode at boot.
When I put apache2ssl_enable=YES in rc.conf it doesn't start at all.
After boot doing apachectl stop and apachectl startssl starts the server in 
ssl mode.

Beech


-- 

---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Mangohealth
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - XanGo - http://www.mangohealth.org
---













pgp9tZsbGtBTU.pgp
Description: PGP signature


Re: Apache ssl startup

2006-03-22 Thread Paul Schmehl
--On Wednesday, March 22, 2006 11:50:24 -0900 Beech Rintoul 
[EMAIL PROTECTED] wrote:


When I put apache2_enable=YES in rc.conf it starts in normal mode at
boot. When I put apache2ssl_enable=YES in rc.conf it doesn't start at
all. After boot doing apachectl stop and apachectl startssl starts the
server in  ssl mode.

I had this same problem with apache2 a while ago.  I also found that, once 
I started apache with ssl, I couldn't also run it without ssl.  Since it 
was a production server and I was in no mode to troubleshoot, I reverted to 
apache13 w/ mod_ssl, which works just fine for me.  I never got around to 
investigating it further, but I've seen this complaint on the list 
periodically for some time now.


Paul Schmehl ([EMAIL PROTECTED])
Adjunct Information Security Officer
The University of Texas at Dallas
http://www.utdallas.edu/ir/security/

Re: Apache ssl startup

2006-03-22 Thread Robert Huff

Beech Rintoul writes:

  When I put apache2_enable=YES in rc.conf it starts in normal
  mode at boot.
  When I put apache2ssl_enable=YES in rc.conf it doesn't start at
  all. 
  After boot doing apachectl stop and apachectl startssl starts the
  server in ssl mode.

huff@ uname -v
FreeBSD 7.0-CURRENT #0: Mon Mar 13 09:23:39 EST 
huff@ grep apach /etc/rc.conf
apache22_enable=YES
apache22ssl_enable=YES

and apache _with ssl_ starts correctly at boot.


Robert Huff


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl startup

2006-03-22 Thread Beech Rintoul
On Wednesday 22 March 2006 13:17, Robert Huff wrote:
 Beech Rintoul writes:
   When I put apache2_enable=YES in rc.conf it starts in normal
   mode at boot.
   When I put apache2ssl_enable=YES in rc.conf it doesn't start at
   all.
   After boot doing apachectl stop and apachectl startssl starts the
   server in ssl mode.

 huff@ uname -v
 FreeBSD 7.0-CURRENT #0: Mon Mar 13 09:23:39 EST
 huff@ grep apach /etc/rc.conf
 apache22_enable=YES
 apache22ssl_enable=YES

   and apache _with ssl_ starts correctly at boot.

Thanks, I'll try it with both in rc.conf

Beech

-- 

---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Mangohealth
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - XanGo - http://www.mangohealth.org
---













pgphpOSXDy7r3.pgp
Description: PGP signature


RE: Apache ssl startup

2006-03-22 Thread Andras Kende

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Beech Rintoul
Sent: Wednesday, March 22, 2006 8:57 AM
To: freebsd-questions@freebsd.org
Subject: Apache ssl startup

I'm trying to get apache2 to start at boot in ssl mode. After reading
through 
the rc.d script I put apache2ssl_enable=YES in /etc/rc.conf, but it 
doesn't work. What is the proper way to start the server at boot?

The machine is running 6.1-PRERELEASE.

Beech
-- 


---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Mangohealth
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - XanGo - http://www.mangohealth.org

---

Beech,


Did you create, configure a ssl certificate?
Here is a good howto:

http://www.bsdguides.org/guides/freebsd/webserver/apache_ssl_php_mysql.php


Andras Kende
http://www.kende.com





___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl startup

2006-03-22 Thread Beech Rintoul
On Wednesday 22 March 2006 19:50, Andras Kende wrote:
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Beech Rintoul
 Sent: Wednesday, March 22, 2006 8:57 AM
 To: freebsd-questions@freebsd.org
 Subject: Apache ssl startup

 I'm trying to get apache2 to start at boot in ssl mode. After reading
 through
 the rc.d script I put apache2ssl_enable=YES in /etc/rc.conf, but it
 doesn't work. What is the proper way to start the server at boot?

 The machine is running 6.1-PRERELEASE.

 Beech

Did you create, configure a ssl certificate?
Here is a good howto:

http://www.bsdguides.org/guides/freebsd/webserver/apache_ssl_php_mysql.php


I needed to add both apache2_enable=YES and apache2ssl_enable=YES to 
rc.conf. Now it's working fine. Thanks to all who replied.

Beech
-- 

---
Beech Rintoul - Sys. Administrator - [EMAIL PROTECTED]
/\   ASCII Ribbon Campaign  | Mangohealth
\ / - NO HTML/RTF in e-mail  | 201 East 9Th Avenue Ste.310
 X  - NO Word docs in e-mail | Anchorage, AK 99501
/ \  - XanGo - http://www.mangohealth.org
---













pgp7i2vk3TMgF.pgp
Description: PGP signature


RE: apache-ssl and mod_mysql mod_php4

2005-07-09 Thread Joe Wood
Yes, it works fine; I installed apache mod_ssl (1.3.33) and installed both
mysql4 and php4 from ports without a single issue.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Graham North
Sent: Saturday, July 09, 2005 7:31 PM
To: questions freebsd
Subject: apache-ssl and mod_mysql  mod_php4

Do the mysql and php4 modules integrate with apache-ssl. as with regular 
apache_1.3.33   ??

I installed apache-ssl instead of apache on a whim - SSL works and I can 
use the server for secure or regular port 80 http, however nowhere can I 
find info that explicitly indicates the compatability of mysql and php4 
for this Apache variant.

Can someone give me some assurance before I install the ports.

Thanks,  Graham/

-- 
Kindness can be infectious - try it.

Graham North
Vancouver, BC
www.soleado.ca



___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache-ssl and mod_mysql mod_php4

2005-07-09 Thread Graham North

Hi Joe - thank you for this information/confirmation.
Cheers,  Graham/


Joe Wood wrote:


Yes, it works fine; I installed apache mod_ssl (1.3.33) and installed both
mysql4 and php4 from ports without a single issue.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Graham North
Sent: Saturday, July 09, 2005 7:31 PM
To: questions freebsd
Subject: apache-ssl and mod_mysql  mod_php4

Do the mysql and php4 modules integrate with apache-ssl. as with regular 
apache_1.3.33   ??


I installed apache-ssl instead of apache on a whim - SSL works and I can 
use the server for secure or regular port 80 http, however nowhere can I 
find info that explicitly indicates the compatability of mysql and php4 
for this Apache variant.


Can someone give me some assurance before I install the ports.

Thanks,  Graham/

 



--
Kindness can be infectious - try it.

Graham North
Vancouver, BC
www.soleado.ca


No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.323 / Virus Database: 267.8.11/44 - Release Date: 7/8/2005
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]

Re: apache+SSL, which port?

2005-02-01 Thread Mark Ovens
Tim Erlin wrote:
Andrew L. Gould wrote:
Not necessarily.  I've heard lots of complaints about PHP and Apache2 
not playing nice.  (Does anyone have any updates on this situation?)
I've been running apache2 with squirrelmail for a while. The biggest 
problems were performance issues. Squirrelmail was very slow pulling 
mail from the disk. Not sure that apache13 would help there.

I finally installed apache13-ssl after trying to portupgrade -o to 
apache2 and trashing everything.

Anyway, it's all working now, except that when I try to connect to 
squirrelmail in a browser I just get a directory listing of 
/usr/local/www/squirrelmail.

I've reinstalled squirrelmail and run the configure script. Alias in 
httpsd.conf is copied from the old httpd.conf:

Alias /squirrelmail/ /usr/local/www/squirrelmail/
Directory /usr/local/www/squirrelmail
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
/Directory
Which worked before.
Any idea what I've missed?
Regards,
Mark
---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0505-0, 31/01/2005
Tested on: 01/02/2005 16:54:20
avast! - copyright (c) 2000-2004 ALWIL Software.
http://www.avast.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Adi Pircalabu
On Tue, 01 Feb 2005 16:54:19 +
Mark Ovens [EMAIL PROTECTED] wrote:

 Anyway, it's all working now, except that when I try to connect to 
 squirrelmail in a browser I just get a directory listing of 
 /usr/local/www/squirrelmail.

Hi,
Maybe you forgot listing index.php in DirectoryIndex directive?

Cheers,
-- 
Adrian Pircalabu


-- 
This message was scanned for spam and viruses by BitDefender.
For more information please visit http://www.bitdefender.com/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Mark Ovens
Adi Pircalabu wrote:
On Tue, 01 Feb 2005 16:54:19 +
Mark Ovens [EMAIL PROTECTED] wrote:
Anyway, it's all working now, except that when I try to connect to 
squirrelmail in a browser I just get a directory listing of 
/usr/local/www/squirrelmail.
Hi,
Maybe you forgot listing index.php in DirectoryIndex directive?
Should have mentioned that I tried adding that but it just caused the 
contents of index.php to be displayed in the browser rather than the 
directory listing. Also, I didn't have index.php in the DirectoryIndex 
directive in the previous version of apache and it worked correctly then.

Mark
---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0505-0, 31/01/2005
Tested on: 01/02/2005 17:12:03
avast! - copyright (c) 2000-2004 ALWIL Software.
http://www.avast.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Adi Pircalabu
On Tue, 01 Feb 2005 17:12:02 +
Mark Ovens [EMAIL PROTECTED] wrote:

 Should have mentioned that I tried adding that but it just caused the 
 contents of index.php to be displayed in the browser rather than the 
 directory listing.

If I understand this correctly, your .php page was not parsed, but
displayed. You should also need a directive like this:

AddType application/x-httpd-php .php

From what I see, /usr/ports/lang/php4/pkg-message.mod says how to
complete the integration of php module.

Cheers,
-- 
Adrian Pircalabu


-- 
This message was scanned for spam and viruses by BitDefender.
For more information please visit http://www.bitdefender.com/

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Mark Ovens
Adi Pircalabu wrote:
On Tue, 01 Feb 2005 17:12:02 +
Mark Ovens [EMAIL PROTECTED] wrote:
Should have mentioned that I tried adding that but it just caused the 
contents of index.php to be displayed in the browser rather than the 
directory listing.
If I understand this correctly, your .php page was not parsed, but
displayed. You should also need a directive like this:
AddType application/x-httpd-php .php
From what I see, /usr/ports/lang/php4/pkg-message.mod says how to
complete the integration of php module.
That's fixed it, thanks :-)
httpd.conf from the previous version I had installed doesn't have 
index.php in the DirectoryIndex directive, but it does have

IfModule mod_php3.c
AddType application/x-httpd-php3 .php3
AddType application/x-httpd-php3-source .php3s
/IfModule
IfModule mod_php4.c
AddType application/x-httpd-php .php
AddType application/x-httpd-php-source .phps
/IfModule
IfModule mod_dir.c
IfModule mod_php3.c
IfModule mod_php4.c
DirectoryIndex index.php index.php3 index.html
/IfModule
IfModule !mod_php4.c
DirectoryIndex index.php3 index.html
/IfModule
/IfModule
IfModule !mod_php3.c
IfModule mod_php4.c
DirectoryIndex index.php index.html
/IfModule
IfModule !mod_php4.c
DirectoryIndex index.html
/IfModule
/IfModule
/IfModule
but I'm 99% certain I didn't have to add thosehmmm, the previous 
version was installed from a package, the current version from the 
ports; maybe that's why?

Thanks again for your help.
Regards,
Mark
---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0505-0, 31/01/2005
Tested on: 01/02/2005 17:41:00
avast! - copyright (c) 2000-2004 ALWIL Software.
http://www.avast.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread albi
Mark Ovens wrote:
Anyway, it's all working now, except that when I try to connect to 
squirrelmail in a browser I just get a directory listing of 
/usr/local/www/squirrelmail.

I've reinstalled squirrelmail and run the configure script. Alias in 
httpsd.conf is copied from the old httpd.conf:

Alias /squirrelmail/ /usr/local/www/squirrelmail/
Directory /usr/local/www/squirrelmail
Options Indexes FollowSymlinks MultiViews
AllowOverride None
Order allow,deny
Allow from all
/Directory
did you enable the index.php (DirectoryIndex) and other php-lines
in the httpd.conf and load the php-module ?
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Mark Ovens
Mark Ovens wrote:
That's fixed it, thanks :-)
httpd.conf from the previous version I had installed doesn't have 
index.php in the DirectoryIndex directive, but it does have

Duh! brain fade; that should say:
...does have index.php in the DirectoryIndex directive, and it also has
Mark
---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0505-0, 31/01/2005
Tested on: 01/02/2005 17:48:40
avast! - copyright (c) 2000-2004 ALWIL Software.
http://www.avast.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Jerry McAllister
 
 Tim Erlin wrote:
  Andrew L. Gould wrote:
  Not necessarily.  I've heard lots of complaints about PHP and Apache2 
  not playing nice.  (Does anyone have any updates on this situation?)
  
  I've been running apache2 with squirrelmail for a while. The biggest 
  problems were performance issues. Squirrelmail was very slow pulling 
  mail from the disk. Not sure that apache13 would help there.
  
 
 I finally installed apache13-ssl after trying to portupgrade -o to 
 apache2 and trashing everything.
 
 Anyway, it's all working now, except that when I try to connect to 
 squirrelmail in a browser I just get a directory listing of 
 /usr/local/www/squirrelmail.
 
 I've reinstalled squirrelmail and run the configure script. Alias in 
 httpsd.conf is copied from the old httpd.conf:
 
  Alias /squirrelmail/ /usr/local/www/squirrelmail/
 
  Directory /usr/local/www/squirrelmail
  Options Indexes FollowSymlinks MultiViews
  AllowOverride None
  Order allow,deny
  Allow from all
  /Directory
 
 Which worked before.
 
 Any idea what I've missed?

Sounds a bit like you have either a file with the wrong ownership
or permissions or you still need to do an AddType or possibly
a DirectoryIndex directive in the httpd.conf file.

jerry

 
 Regards,
 
 Mark
 
 
 ---
 avast! Antivirus: Outbound message clean.
 Virus Database (VPS): 0505-0, 31/01/2005
 Tested on: 01/02/2005 16:54:20
 avast! - copyright (c) 2000-2004 ALWIL Software.
 http://www.avast.com
 
 
 
 ___
 freebsd-questions@freebsd.org mailing list
 http://lists.freebsd.org/mailman/listinfo/freebsd-questions
 To unsubscribe, send any mail to [EMAIL PROTECTED]
 

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-02-01 Thread Sandy Rutherford
 On Mon, 31 Jan 2005 14:25:04 -0600, 
 Tim Erlin [EMAIL PROTECTED] said:

  Andrew L. Gould wrote:
  Not necessarily.  I've heard lots of complaints about PHP and Apache2 
  not playing nice.  (Does anyone have any updates on this situation?)

  I've been running apache2 with squirrelmail for a while. The biggest 
  problems were performance issues. Squirrelmail was very slow pulling 
  mail from the disk. Not sure that apache13 would help there.

I too have been using apache2 + SSL with SquirrelMail.  I have had no
problems --- performance or otherwise.

Are you sure that your performance issues are really a PHP issue and not
a problem with your IMAP server?  Do you see the same problems if you
use a different IMAP client?

...Sandy
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-01-31 Thread albi
Mark Ovens wrote:
I want to install apache with SSL but there are two ports, 
www/apache13-modssl and www/apache13-ssl

What is the difference, and which is the best to install? 
i think the apache13-ssl has SSL build in, the other uses a module for SSL
It is just for 
use on my home LAN but I want to run squirrelmail to access my mail from 
remote machines.
there's also apache2 which, afaik, builds with SSL by default
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-01-31 Thread Charles Swiger
On Jan 31, 2005, at 1:22 PM, albi wrote:
Mark Ovens wrote:
I want to install apache with SSL but there are two ports, 
www/apache13-modssl and www/apache13-ssl
What is the difference, and which is the best to install?
i think the apache13-ssl has SSL build in, the other uses a module for 
SSL
Apache-1.3 does not have SSL built-in.  The port www/apache13-ssl is 
using Ben Laurie's SSL, whereas mod_ssl is by Ralf Engelschall.  See:

http://www.apache-ssl.org/#Credits
http://www.modssl.org/
It is just for use on my home LAN but I want to run squirrelmail to 
access my mail from remote machines.
there's also apache2 which, afaik, builds with SSL by default
Yes, apache2 has support for SSL built-in, and will enable SSL if the 
system it is built on has it available (which is true for all recent 
FreeBSD versions).

--
-Chuck
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-01-31 Thread Mark Ovens
Charles Swiger wrote:
On Jan 31, 2005, at 1:22 PM, albi wrote:
Mark Ovens wrote:
I want to install apache with SSL but there are two ports, 
www/apache13-modssl and www/apache13-ssl
What is the difference, and which is the best to install?
i think the apache13-ssl has SSL build in, the other uses a module for 
SSL
Apache-1.3 does not have SSL built-in.  The port www/apache13-ssl is 
using Ben Laurie's SSL, whereas mod_ssl is by Ralf Engelschall.  See:

http://www.apache-ssl.org/#Credits
http://www.modssl.org/
It is just for use on my home LAN but I want to run squirrelmail to 
access my mail from remote machines.
there's also apache2 which, afaik, builds with SSL by default
Yes, apache2 has support for SSL built-in, and will enable SSL if the 
system it is built on has it available (which is true for all recent 
FreeBSD versions).

So apache2 is the way to go then?
Mark

---
avast! Antivirus: Outbound message clean.
Virus Database (VPS): 0505-0, 31/01/2005
Tested on: 31/01/2005 18:39:35
avast! - copyright (c) 2000-2004 ALWIL Software.
http://www.avast.com

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-01-31 Thread Andrew L. Gould
On Monday 31 January 2005 12:39 pm, Mark Ovens wrote:
 Charles Swiger wrote:
  On Jan 31, 2005, at 1:22 PM, albi wrote:
  Mark Ovens wrote:
  I want to install apache with SSL but there are two ports,
  www/apache13-modssl and www/apache13-ssl
  What is the difference, and which is the best to install?
 
  i think the apache13-ssl has SSL build in, the other uses a module
  for SSL
 
  Apache-1.3 does not have SSL built-in.  The port www/apache13-ssl
  is using Ben Laurie's SSL, whereas mod_ssl is by Ralf
  Engelschall.  See:
 
  http://www.apache-ssl.org/#Credits
  http://www.modssl.org/
 
  It is just for use on my home LAN but I want to run squirrelmail
  to access my mail from remote machines.
 
  there's also apache2 which, afaik, builds with SSL by default
 
  Yes, apache2 has support for SSL built-in, and will enable SSL if
  the system it is built on has it available (which is true for all
  recent FreeBSD versions).

 So apache2 is the way to go then?

 Mark


Not necessarily.  I've heard lots of complaints about PHP and Apache2 
not playing nice.  (Does anyone have any updates on this situation?)

If you plan on using PHP, you may want to stick with Apache 1.3.

Best of luck,

Andrew Gould
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache+SSL, which port?

2005-01-31 Thread Tim Erlin
Andrew L. Gould wrote:
Not necessarily.  I've heard lots of complaints about PHP and Apache2 
not playing nice.  (Does anyone have any updates on this situation?)
I've been running apache2 with squirrelmail for a while. The biggest 
problems were performance issues. Squirrelmail was very slow pulling 
mail from the disk. Not sure that apache13 would help there.

--Tim Erlin
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


RE: apache+SSL, which port?

2005-01-31 Thread Michael Clark


 -Original Message-
 From: Andrew L. Gould [mailto:[EMAIL PROTECTED]
 Sent: Monday, January 31, 2005 1:07 PM
 To: freebsd-questions@freebsd.org
 Cc: Mark Ovens
 Subject: Re: apache+SSL, which port?
 
 
 On Monday 31 January 2005 12:39 pm, Mark Ovens wrote:
  Charles Swiger wrote:
   On Jan 31, 2005, at 1:22 PM, albi wrote:
   Mark Ovens wrote:
   I want to install apache with SSL but there are two ports,
   www/apache13-modssl and www/apache13-ssl
   What is the difference, and which is the best to install?
  
   i think the apache13-ssl has SSL build in, the other 
 uses a module
   for SSL
  
   Apache-1.3 does not have SSL built-in.  The port www/apache13-ssl
   is using Ben Laurie's SSL, whereas mod_ssl is by Ralf
   Engelschall.  See:
  
   http://www.apache-ssl.org/#Credits
   http://www.modssl.org/
  
   It is just for use on my home LAN but I want to run squirrelmail
   to access my mail from remote machines.
  
   there's also apache2 which, afaik, builds with SSL by default
  
   Yes, apache2 has support for SSL built-in, and will enable SSL if
   the system it is built on has it available (which is true for all
   recent FreeBSD versions).
 
  So apache2 is the way to go then?
 
  Mark
 
 
 Not necessarily.  I've heard lots of complaints about PHP and Apache2 
 not playing nice.  (Does anyone have any updates on this situation?)
 
 If you plan on using PHP, you may want to stick with Apache 1.3.

I use Apache2 with PHP and SSL without problems.  Have been for a very
long time.  We probably run 15 or so sites that fall under this.

 


CONFIDENTIALITY NOTE: This electronic transmission, including all
attachments, is directed in confidence solely to the person(s) to whom it is
addressed, or an authorized recipient, and may not otherwise be distributed,
copied or disclosed. The contents of the transmission may also be subject to
intellectual property rights and all such rights are expressly claimed and
are not waived. If you have received this transmission in error, please
notify the sender immediately by return electronic transmission and then
immediately delete this transmission, including all attachments, without
copying, distributing or disclosing same. 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: apache + SSL, modssl vs OpenSSL

2004-03-01 Thread Matthew Seaman
On Sun, Feb 29, 2004 at 02:07:03PM -1000, Vincent Poy wrote:

   I'm planning to upgrade my old apache with a newer version and add
 SSL but I noticed the ports has both apache + modssl as well as apache +
 OpenSSL, are there any differences between the two of them and is one of
 them better than the other?  Thanks.

apache+mod_ssl is my preference, but that's really just me.  Either
will serve you well.  Functionality and configuration file sysntax is
slightly different between the two but that's mostly a matter of
individual preference rather than any organic difference.  One thing
that mod_ssl supplies is the EAPI, which enables a number of other
extensions to apache, such as the ability to define and use variables
within the apache configuration files.

You might be interested to know that mod_ssl is a standard part of
Apache 2.x

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK


pgp0.pgp
Description: PGP signature


Re: Apache ssl certificates?

2004-02-18 Thread Ryan Merrick
Eric F Crist wrote:
On Tuesday 17 February 2004 10:48 pm, Saint Aardvark the Carpeted wrote:

Eric F Crist disturbed my sleep to write:

When I go the the server via https:servername I get a dialog asking
for me to accept a certificate, but it's still the snakeoil cert!  What
am I doing wrong?
I hate to ask the obvious, but have you restarted Apache?  I know that's
bit me a couple times...
Hugh


That's a fair questions, but yes.  I've checked my syntax and restarted 
multiple times.  I've even taken the old snake-oil certificate and it's 
entire containing directory and moved it to a completely different part of 
the system.  What kills me more is that I've set these systems up before.

Thanks for the replies...

Hi,

More to the point, try stopping apache and then starting it. For some 
reason apache does not read the new certs on a apachectl restart.

--
-Ryan Merrick
[EMAIL PROTECTED]
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl certificates?

2004-02-17 Thread Saint Aardvark the Carpeted
Eric F Crist disturbed my sleep to write:

 When I go the the server via https:servername I get a dialog asking
 for me to accept a certificate, but it's still the snakeoil cert!  What
 am I doing wrong?

I hate to ask the obvious, but have you restarted Apache?  I know that's
bit me a couple times...

Hugh
-- 
Saint Aardvark the Carpeted
[EMAIL PROTECTED]
Because the plural of Anecdote is Myth.
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache ssl certificates?

2004-02-17 Thread Eric F Crist
On Tuesday 17 February 2004 10:48 pm, Saint Aardvark the Carpeted wrote:
 Eric F Crist disturbed my sleep to write:
  When I go the the server via https:servername I get a dialog asking
  for me to accept a certificate, but it's still the snakeoil cert!  What
  am I doing wrong?

 I hate to ask the obvious, but have you restarted Apache?  I know that's
 bit me a couple times...

 Hugh

That's a fair questions, but yes.  I've checked my syntax and restarted 
multiple times.  I've even taken the old snake-oil certificate and it's 
entire containing directory and moved it to a completely different part of 
the system.  What kills me more is that I've set these systems up before.

Thanks for the replies...

-- 
Eric F Crist
AdTech Integrated Systems, Inc
(612) 998-3588


pgp0.pgp
Description: signature


Re: Apache ssl certificates?

2004-02-17 Thread matthew


On Wed, 18 Feb 2004, Eric F Crist wrote:

 On Tuesday 17 February 2004 10:48 pm, Saint Aardvark the Carpeted wrote:
  Eric F Crist disturbed my sleep to write:
   When I go the the server via https:servername I get a dialog asking
   for me to accept a certificate, but it's still the snakeoil cert!  What
   am I doing wrong?
 
  I hate to ask the obvious, but have you restarted Apache?  I know that's
  bit me a couple times...
 

another pretty lame reply, what about permissions on those certs?
i imagine they should be quite restrictive yet httpd has to read them.

m


  Hugh

 That's a fair questions, but yes.  I've checked my syntax and restarted
 multiple times.  I've even taken the old snake-oil certificate and it's
 entire containing directory and moved it to a completely different part of
 the system.  What kills me more is that I've set these systems up before.

 Thanks for the replies...

 --
 Eric F Crist
 AdTech Integrated Systems, Inc
 (612) 998-3588

___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache+ssl

2004-01-26 Thread Kris Kennaway
On Tue, Dec 09, 2003 at 03:16:21PM -0500, Marius Kirschner wrote:
 Tried to update my old apache+ssl to the latest and am getting the following
 error:
 
 making all in tools...
 ===  Installing for openssl-0.9.7c
 ===   Generating temporary packing list
 ===  Checking if security/openssl already installed
 ln: illegal option -- h
 usage: ln [-fisv] file1 file2
ln [-fisv] file ... directory
link file1 file2
 *** Error code 1
 
 Stop in /usr/ports/security/openssl.
 *** Error code 1
 
 Stop in /usr/ports/www/apache13-ssl.
 
 
 Any idea how to work around that?

Update to a supported version of FreeBSD.

Kris
___
[EMAIL PROTECTED] mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Apache-ssl

2003-02-02 Thread Gannater Jnos
I have found this in my httpsd_error_log:
No SSL Certificate set for server programs.com:80
How can I set the Certificate?






To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Apache-ssl

2003-02-02 Thread Matthew Seaman
On Sun, Feb 02, 2003 at 01:27:48PM +0100, Gannater János wrote:
 I have found this in my httpsd_error_log:
 No SSL Certificate set for server programs.com:80
 How can I set the Certificate?

See http://www.modssl.org/docs/2.8/ssl_reference.html#ToC10 or
http://httpd.apache.org/docs-2.0/mod/mod_ssl.html#sslcertificatefile

You'll probably need to setup certificates in each HTTPS-enabled
virtual host on your server, or else the Distinguished Name from the
certificate won't match the URL of the site.

Cheers,

Matthew

-- 
Dr Matthew J Seaman MA, D.Phil.   26 The Paddocks
  Savill Way
PGP: http://www.infracaninophile.co.uk/pgpkey Marlow
Tel: +44 1628 476614  Bucks., SL7 1TH UK

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message



Re: Apache-ssl

2003-01-31 Thread Luke Hollins
On Fri, 31 Jan 2003, [ISO-8859-2] Gannater Jnos wrote:

 I compiled apache-ssl safely on my computer. No error came up!
 When I try to start it:
 /usr/local/sbin/httpsdctl start
 The following error comes up:
 /usr/local/sbin/httpsdctl restart: httpsd could not be started

 What should I do?

try httpsdctl configtest, if its ok then check the error log for
more information.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-questions in the body of the message