vote up 6 vote down star
3

I'm looking for a small (not more, than a few megs) web server, which must be capable of running PHP code (with external PHP installation). I would strongly prefer one where it is very easy to change the root directory often. My OS is Windows XP.

I saw these related SO questions:

XAMPP, however, is huge (I just installed it, its more than 200 Mb!); thttpd and lighttpd does not support PHP, others are even worse than those.

Right now I'm using Technologica HTTP Server, which is almost perfect, but unfortunately it is rather slow when serving PHP pages, since it starts a new instance of php.exe for each page request. What's worse, about every second time the PHP interpreter somehow locks up and times out after 10-15 seconds, making the whole thing even slower.

Are there any alternatives that I have missed?

Edit: LightTPD might be just it. It does support PHP after all.

Edit 2: Thanks for everyone's answers, they have been really helpful! I chose MicroApache because that's the smallest which satisfies all my requirements.

flag

78% accept rate
With the price on flash media dropping so fast that 2GB flash drives are going to start coming in cereal boxes next week and a XAMPP Lite clocking it at just over 100MB - I wouldn't put a lot of work into setting up a true 'minimal' installation unless you're actually building an embedded webserver. – Sean McSomething Feb 6 at 19:54
No, that's not what I have in mind. Surprisingly, I need this on my laptop for testing. But I find the thought of having a couple of hundred megs lying around on my rather small hard disk, for the very simple task of serving web pages with some PHP locally; well, simply disturbing. – David Hanak Feb 6 at 21:06

9 Answers

vote up 3 vote down check

What about MicroApache?

I think it's under 1Mb, and it has support for PHP.

link|flag
Cool, I had no knowledge of this project, either! – David Hanak Feb 5 at 15:27
vote up 1 vote down

Check out MoWES.

MoWeS stands for the three letter abbreviation Modular Webserver System and makes it possible, to run a webserver based on Apache, MySQL and PHP from an USB Stick or any other writable media (harddrive, flash cards etc.) without installation under Windows (98 to Vista).

link|flag
vote up 5 vote down

I've never done this so I could be wrong, but apparently lighttpd does support PHP: Setting up PHP with Lighttpd

link|flag
Thanks, I wasn't aware of that. LightTTPD is still almost 10 megs, but that's a still lot better than XAMPP. – David Hanak Feb 5 at 14:24
I don't think you're going to get much smaller than that. – ryeguy Feb 5 at 14:40
vote up 5 vote down

Well, a basic apache installation isn't all that big and takes very little resources. My current installation is about 40Mb (obviously way over your 2Mb limit), but 10Mb of that is docs and there is a load of other stuff that most installations won't need.

Can you be more specific about why you have a 2Mb limit on the web server?

link|flag
When I wrote a couple, I didn't mean exactly 2, just "a few" (see my edit). There's no specific, reason, I just want to keep it small, that's all. – David Hanak Feb 5 at 14:25
Apache is the de-facto default webserver for PHP, so you would really do your self a favour by going with that. Just slim it down a bit (Remove docs and unused modules) – troelskn Feb 5 at 14:32
vote up 0 vote down

There is an OS project called MoWeS Portable, then there is Server2Go and I also found MiniServX, but that costs about $30.

link|flag
vote up 0 vote down

For small and fast, you can't really beat Lighttpd. It's a really nice, fast server. The configuration is also very simple, plus with FastCGI you're able to run lots of other CGI scripts with little/no configuration.

Alex

link|flag
vote up 1 vote down

This seems like more of a test server...but it is 500K in size...

link|flag
Seems promising, I'll take a closer look. – David Hanak Feb 5 at 14:26
(After a little testing) Not bad at all. Unfortunately it does not serve XML files (it simply times out), which is another must for me. Also, the licensing is not very permitting. – David Hanak Feb 5 at 14:34
vote up 1 vote down

Abyss Web server is quite nice and light weight and also supports PHP.

link|flag
vote up 0 vote down

Since 0.7.52, nginx is an option for Windows (officially) as well. It's still a development version, but should be stable enough for, um, development.

Here's how to configure it (based on an unofficial Win32 build, but should work on the official one) for PHP.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.