Page 1 of 1

Which Web Server do you prefer/use?

Posted: Wed Jul 27, 2011 2:01 pm
by Hustle
I was just wondering which Web Server do you prefer/use?

Re: Which Web Server do you prefer/use?

Posted: Wed Jul 27, 2011 2:36 pm
by DomC
Apache as I have never used "Lighttpd" as I believed it was called (I'll edit if I am wrong) - I shall have to check it out.

Re: Which Web Server do you prefer/use?

Posted: Wed Jul 27, 2011 3:32 pm
by JelvinJS7
I've only heard of apache :geek:

Re: Which Web Server do you prefer/use?

Posted: Wed Jul 27, 2011 3:39 pm
by Hustle
I recommend Lighttpd especially for older hardware, it's super light (in my opinion) on system resources, http://www.lighttpd.net/

Re: Which Web Server do you prefer/use?

Posted: Wed Jul 27, 2011 8:02 pm
by Dylan
Apache; comes pre-compiled more easily for windows in sets like WAMP and XAMPP

Re: Which Web Server do you prefer/use?

Posted: Thu Jul 28, 2011 2:02 pm
by jacek
Apache, very flexible and used pretty much everywhere. At the moment I don't need anything more lightweight but if I did I think I would try nginx first because it has a cool name ;)

Re: Which Web Server do you prefer/use?

Posted: Thu Jul 28, 2011 5:19 pm
by JelvinJS7
jacek wrote:I think I would try nginx first because it has a cool name
I would say that's a bad strategy, but there was an episode of a show wgere a person made a lot of money via stock from a business she chose cuz ut rhymed with "pickle"

Re: Which Web Server do you prefer/use?

Posted: Thu Jul 28, 2011 7:06 pm
by libeco
Nginx is quite fast, it's just a pity you can't really change anything unless you have full access to it. htaccess won't work.

Re: Which Web Server do you prefer/use?

Posted: Thu Jul 28, 2011 8:07 pm
by jacek
libeco wrote:Nginx is quite fast, it's just a pity you can't really change anything unless you have full access to it. htaccess won't work.
I think that's kind of the point of it, Apache has to check the folder the file is in and all folders above it for .htaccess files, it's actually a pretty slow process.

If I ever were to go for something designed to be super-lightweight it would need to have little to no flexibility ;) I think the best use for somethign like that is as a file server only, for example I would have img.betterphp.co.uk on a separate physical server for all the images.

Re: Which Web Server do you prefer/use?

Posted: Thu Jul 28, 2011 8:19 pm
by libeco
Just using a subdomain for your images, already will improve the speed for your users, simply because a browser cannot handle that many connections to one website. Somehow a subdomain is not seen as the same as the regular website.

Re: Which Web Server do you prefer/use?

Posted: Fri Jul 29, 2011 2:16 pm
by jacek
libeco wrote:Just using a subdomain for your images, already will improve the speed for your users, simply because a browser cannot handle that many connections to one website. Somehow a subdomain is not seen as the same as the regular website.
Well yeah that too, but this is a server discussion ;)