PDA

View Full Version : small web server supporting php and ssl


martien
20th November 2008, 20:26
Hello. I'm looking for a small web server with php and ssl support. The reason i need it is because i'm writing an application witch i want to run on a different port with a different server. Not the apache. Also i need small web server cause i want it to be light-weight. Any ideas. Thank you very much.

Leszek
21st November 2008, 01:06
I recommend Cherokee for a test shot. It's author claims it is a very fast web server. I'm at the end of writing a howto about installing and configuring Cherokee (just have to test if everything works fine once again).
If everything turns out ok I'll post it here and wait for approval (or denial).
http://www.cherokee-project.com/

Leszek
27th November 2008, 23:40
It has just been published: http://howtoforge.com/how-to-install-and-configure-cherokee-web-server-with-php5-and-mysql5-on-ubuntu-8.10

Linocks
31st December 2008, 20:04
Hello,

I am following this 'How-To (http://howtoforge.com/how-to-install...on-ubuntu-8.10)' and on reaching the below command
./configure --localstatedir=/var \
--prefix=/usr \
--sysconfdir=/etc \
--with-wwwroot=/var/www

I get the following error : -

root@server1:/tmp/cherokee-0.11.6# --prefix=/usr \
-bash: --prefix=/usr: No such file or directory

I have entered only one command at a time and have configured the server as per pages 1-3, 5 & 7 of the 'Intrepid Ibex How-To (http://www.howtoforge.com/perfect-server-ubuntu-8.10)'

What have I done wrong??:confused:

marpada
31st December 2008, 20:27
Write the command in one line, without the "\"

./configure --localstatedir=/var --prefix=/usr --sysconfdir=/etc --with-wwwroot=/var/www
________
Iolite vaporizer butane refill (http://vaporizer.org)
________
Ship Sale (http://ship-sale.com/)

Linocks
1st January 2009, 15:26
Write the command in one line, without the "\"

./configure --localstatedir=/var --prefix=/usr --sysconfdir=/etc --with-wwwroot=/var/www

Thanks Marpada, that appeared to have worked. :)