Tagged Questions

Lighttpd is a lightweight and high-performance event-driven web server.

learn more… | top users | synonyms

90
votes
15answers
48k views

Apache vs nginx vs lighttpd? Which is simpler to configure and administer?

Apache vs nginx vs lighttpd? Which is simpler to configure and administer? A bit more context, in case this question is too general: the uses I have in mind are running Django and serving static ...
14
votes
6answers
5k views

What web server to use for Lua web development

What web server (and why) should I use for Lua web development?
9
votes
2answers
2k views

Why use Apache over NGINX/Cherokee/Lighttpd?

Apache has been the de facto standard web server for over a decade, but recent years have brought us web servers that consume less RAM and handle many more requests per second using fewer threads and ...
8
votes
2answers
4k views

Failed requests by length in my ApacheBench load test result

I have a website in PHP, Lighttpd. It uses also MySQL on Centos 5. I've tested my PHP with code below with Apache Bench (ab). It resulted in some errors (Failed Requests) indicating other length than ...
8
votes
5answers
2k views

Apache or lighttpd

For development, I use a local LAMP stack, for production I'm using MediaTemple's Django Container (which I'm loving BTW). MT's container uses lighthttpd. Honestly I've never had any other ...
7
votes
3answers
2k views

nginx setup question

I know this is not directly a programming question, but people on stackoverflow seems to be able to answer any question. I have a server running Centos 5.2 64 bit. Pretty powerful dual core 2 server ...
6
votes
11answers
2k views

Django + FastCGI - randomly raising OperationalError

I'm running a Django application. Had it under Apache + mod_python before, and it was all OK. Switched to Lighttpd + FastCGI. Now I randomly get the following exception (neither the place nor the time ...
6
votes
5answers
1k views

What would you recommend for a high traffic ajax intensive website?

For a website like reddit with lots of up/down votes and lots of comments per topic what should I go with? Lighttpd/Php or Lighttpd/CherryPy/Genshi/SQLAlchemy? and for database what would scale ...
5
votes
2answers
904 views

Benchmarking Performance of node.js (cluster) with mysql pools : Lighttpd + PHP?

Edit(2): Now using db-mysql with generic-pool module. The error rate has dropped significantly and hovers at 13% but the throughput is still around 100 req/sec. Edit(1): After someone suggesting that ...
5
votes
4answers
2k views

Server-side auto-minify?

Is there any way to automatically minify static content and then serve it from a cache automatically? Similar to have mod_compress/mod_deflate work? Preferably something I could use in combination ...
5
votes
3answers
346 views

Why would Django fcgi just die? How can I find out?

I'm running Django on Linux using fcgi and Lighttpd. Every now and again (about once a day) the server just dies. I'm using the latest stable release of Django, Python and Lighttpd. The only thing I ...
5
votes
3answers
2k views

Secure communication between django server and iphone app

I'm writing an iPhone application that needs to send small bits of information (two strings of under 128 characters each, at a time, and this doesn't happen too frequently) to a server when users ...
5
votes
3answers
558 views

Why are event-based network applications inherently faster than threaded ones?

We've all read the benchmarks and know the facts - event-based asynchronous network servers are faster than their threaded counterparts. Think lighttpd or Zeus vs. Apache or IIS. Why is that?
5
votes
4answers
1k views

What do you recommend for setting up a shared server with php

What do you recommend for setting up a shared server with php from a security/performance point of view? Apache mod_php (how do you secure that? other than safe_mode as it won't be in PHP6) Apache ...
4
votes
1answer
451 views

lighttpd + perl + mojolicious =?

Does mojolicious working under the lighttpd web-server? How to cofigure? Does I need setup the FastCGI? It's my first usage of lighttpd.
4
votes
1answer
557 views

Lighttpd: How to password-protect URLs matching regex

Is there a convenient way to password-protect URLs which match a certain pattern in Lighttpd? I thought about matching regex, but any other creative solution will be nice. NOTE : I'm not looking for ...
4
votes
3answers
813 views

fastcgi, cherrypy, and python

So I'm trying to do more web development in python, and I've picked cherrypy, hosted by lighttpd w/ fastcgi. But my question is a very basic one: why do I need to restart lighttpd (or apache) every ...
4
votes
2answers
2k views

Best practice for integrating CherryPy web-framework, SQLAlchemy sessions and lighttpd to serve a high-load webservice

I'm developing a CherryPy FastCGI server behind lighttpd with the following setup to enable using ORM SQLAlchemy sessions inside CherryPy controllers. However, when I run stress tests with 14 ...
4
votes
5answers
3k views

apache + lighttpd front-proxy concept

In order to lighten Apache's load people often suggest using lighttpd to serve up static content. e.g. http://www.linux.com/feature/51673 In this setup Apache passes requests for static content back ...
3
votes
1answer
99 views

Enable Browser-Caching for lighttpd/thin

I have the problem that Googles “Page Speed” says that I should enable browser caching. I am usein a lighttpd server as a proxy for different web server on my server. One of them is a rails app (Ruby ...
3
votes
1answer
80 views

Lighttpd rewrite conversion?

So, I'm trying to move a site over to Lighttpd but I can't seem to get the URL re-writes correct - any idea what these would translate to in Lighttpd-speak? RewriteRule ^portfolio/([^/]+) ...
3
votes
1answer
201 views

Django admin with FCGI + lighttpd

I'm running a django installation on lighttpd +FCGI. Everything works fine except the admin. It seems that the redirects after I post something (i.e. I modify sor create an instance of a model) go ...
3
votes
3answers
245 views

Running Rails and PHP on Lighttpd on Linux

Well, I'm wondering if theres a way to run both rails and PHP on Lighty, on Ubuntu. I want to run both my PHP projects and Rails projects on the one server/domain. I have little experience with Linux ...
3
votes
1answer
556 views

Cherrypy : Do I really need to put it behind a frontend?

I've been working on a python web app using cherrypy and read it'd be more "robust" to use it as a backend, so I gave it a try. Shortly put, running some benchmarks on a page doing some database ...
3
votes
1answer
771 views

How to handle chunked encoding request properly?

I have two websites: one with Lighttpd with PHP and second with Apache and neither of this handle chunked transfer encoding properly. I send this request from my mobile, J2ME and there is no ...
3
votes
3answers
208 views

Which has a better code base to learn from: nginx or lighttpd?

Primary goal is to learn from a popular web server codebase (implemented in C) with priority given to structure/design instead of neat tricks throughout the code. I didn't include Apache since its ...
3
votes
2answers
490 views

Lightweight HTTP application/server for static content

I am in need of a scalable and performant HTTP application/server that will be used for static file serving/uploading. So I only need support for GET and PUT operations. However, there are a few ...
3
votes
4answers
672 views

Some files won't stream from lighttpd to Droid

We are running into some odd issues with streaming certain files in our app. After lots and lots of testing we've narrowed it down to what seems like some sort of issue between lighttpd and Droid, and ...
3
votes
3answers
778 views

Questions regarding Lighttpd for Windows

I am using lighty for windows, yes i know it's not linux, but atm can only afford local hosting, which then allows me to do a lot of learning and practicing my web skills. I am aware that fast-cgi, ...
3
votes
4answers
280 views

How to improve PHP performance more?

I've created PHP application for Facebook. It uses MySQL, Memcached and works on Lighttpd on Centos 2,6 Ghz and 2 GB RAM. it's basically one PHP file that after first run is cached and every next ...
3
votes
3answers
4k views

Lighttpd + PHP + FCGI

I have a problem with Lighttpd, PHP and CGI. I use OpenSUSE.10. I have builded lighttpd (version 1.4.23) and php (version 5.3.0). This is lighttpd build command lines: ./configure ...
3
votes
3answers
841 views

Django and fcgi - logging question

I have a site running in Django. Frontend is lighttpd and is using fcgi to host django. I start my fcgi processes as follows: python2.6 /<snip>/manage.py runfcgi maxrequests=10 host=127.0.0.1 ...
3
votes
2answers
352 views

Loading a PHP app/framework into memory only once possible with FastCGI?

I was under the impression that FastCGI allowed you to kinda load in your web app once, and then you just "provide" FastCGI with some function, like myHandleHTTPRequest($url), that would then be ...
3
votes
3answers
4k views

Is fprintf thread-safe?

Is fprintf thread-safe? The glibc manual seems to say it is, but my application, which writes to a file using single call to fprintf() seems to be intermingling partial writes from different ...
3
votes
2answers
9k views

How to convert Apache .htaccess files into Lighttpd rules?

It's big problem to convert mod_rewrite rules to lighttpd format
2
votes
1answer
319 views

How to configure Lighthttpd with fastcgi

I've installed LightTPD on windows. It starts without fastcgi normally. Then I copy/paste one of the fastCGI examples #include <sstream> // manipulate strings (integer conversion) #include ...
2
votes
1answer
109 views

Between nginx and lighttpd, which one suits best the needs of a web-app (SaaS) and why?

Between nginx and lighttpd, which one suits best the needs of a web-app (SaaS) and why? I seek to find out: Which one takes advantage of the hardware its running on, which one scales the best, which ...
2
votes
1answer
50 views

With with Apache RegEx to Lighttpd

I just can't seem to get this one right. RewriteRule !\.(z|js|ico|css|php)$ index.php [NC] The developer (no longer here) put this in the Lighttpd config : url.rewrite-once("^(/(?!( ...
2
votes
2answers
265 views

Apache + mod_wsgi / Lighttpd + wsgi - am I going to see differences in performance?

I'm a newbie to developing with Python and I'm piecing together the information I need to make intelligent choices in two other open questions. (This isn't a duplicate.) I'm not developing using a ...
2
votes
1answer
217 views

lighttpd-cpp how to compile?

I was trying to create my own module for lighttpd, after some minutes i've discovered that this is all in c! and i need maps and some other class i've made in c++. so i come across ...
2
votes
1answer
169 views

Updating .po files without restarting lighty

We are running PHP with gettext on the lighttpd web server. When we update the .po/.mo files with new translations, we have to restart lighty for the new translations to appear. Is lighty caching the ...
2
votes
1answer
590 views

running lua scripts using fastCGI

i am currently trying to figure out ways to run lua scripts using fastCGI with either lighttpd or nginx. the only thing i was able to dig up yet was wsapi of the kepler project. but i wonder, if there ...
2
votes
4answers
269 views

Which server is best suitable for image hosting?

I want to move all the website (developed in ASP.NET) images to another server. The image hosting server should be dedicated only image processing like image resizing and etc. Which server is best ...
2
votes
1answer
218 views

Permanent redirect of subdomains to www. in lighttpd?

I want to redirect all subdomain paths on domainxyz.com to www.domainxyz.com except for cdn.domainxyz.com and ad.domainxyz.com. To clarify: I want for example abc.domainxyz.com/cat.php?id=23 ...
2
votes
2answers
112 views

Securing a shared lighttpd setup

(Yes, I know that questions pertaining to lighttpd fit better on SF, but I thought it was more apt to be asked here since it's primarily concerned with security policy.) We're planning to set up a ...
2
votes
1answer
228 views

Lighttpd check request headers in configuration

I was wondering if it was possible in the configuration of Lighttpd to read request headers, I've searched and searched.. apparently it's not possible. For example, conditional configuration based ...
2
votes
1answer
530 views

url.rewrite-once with Kohana and with urls

currently I have this setup in our simple-hosts.conf: url.rewrite-once = ( ".*.(js|ico|gif|jpg|png|css|php|htm)(?.*)?$" => "$0", "/slapi" => "/slapi/index.php" ) Works great, except the ...
2
votes
1answer
596 views

Django URL Conf Returns Incorrect “Current URL”

I have a django app that is mostly done, and the URLs work perfectly when I run it with the manage.py runserver command. However, I've recently tried to get it running via lighttpd, and many links ...
2
votes
2answers
1k views

Video Streaming in Android using Lighttpd

I 'm developing a video streaming android application on HTC Tattoo. I 've Lighttpd server at my server side which i use to stream videos to a web site. On Android , Do I need to enable any module in ...
2
votes
2answers
471 views

Serving files with Django and lighttpd

I'm trying to create a simple way of serving downloadable content with Django. The idea is that logged in users shall be able to download (rather large) files through lighttpd. There are several ...

1 2 3 4 5 8