Questions tagged [lighttpd]

Lighttpd ("lighty") is a fast open source web server, optimised for speed critical environments

Lighttpd (pronounced "lighty") is an open source web server optimised for speed critical environments, which is standards compliant. It attempts to be lower memory footprint, and more CPU efficient than other web servers, and is often simpler to configure. Initially it was targetted at static content, but now it is widely used for both static content and hosting CGI, PHP, Ruby, Python etc code.

More information is available on Wikipedia

596 questions
0
votes
1 answer

how can i tell if original requests are secure or unsecured using lighttpd infront of play framework?

My system is running the play framework through lighttpd. I need to know if the requests that are coming from Facebook are from https or http. Two questions: Is there any way that I can tell in my framework if the original request was from http or…
0
votes
1 answer

Where is Error Log in lighttpd?

I'm new to lighttpd, I just switched from Apache. How can I find the error log by SSH ? I've been getting some 500 Internal Server errors I want to troubleshoot.
Greatestswordsman
  • 397
  • 1
  • 7
  • 19
0
votes
1 answer

Set Response Header In Lighttpd Web Server

I am wondering how I send back a HTTP response of 501 (Not Implemented) in Lighttpd web server, when somebody tries to access our api.mydomain.com over non-ssl. The check we have, but don't see how to actually send back the HTTP response of…
Justin
  • 5,328
  • 19
  • 64
  • 84
0
votes
2 answers

Expire module configured to 0, but swf is allways loading from cache

I am trying to load an swf flash file from my lighttpd web server. expire.url "/static/swf" => "modification plus 0 seconds" However, when I reload from the web browser, chrome seems to load the file from cache. Same with firefox. In this one…
vitidandu
  • 11
  • 5
0
votes
1 answer

Method to proxy Subversion repo in lighttpd with https to the outside world

HTTPS is HTTP over SSL. I have an Apache server running on a machine in order to publish a Subversion repository (read-only). Apparently there is no direct solution to export the repository using lighttpd, which is why there is the Apache instance…
0xC0000022L
  • 1,516
  • 2
  • 22
  • 42
0
votes
1 answer

Need help, failed to start Lighttpd

I following this tutorial corectly : http://howtoforge.com/installing-lighttpd-with-php5-and-mysql-support-on-fedora-14 But now i got this error : [root@fedora lighttpd]# /etc/init.d/lighttpd start Starting lighttpd: 2011-03-24 00:06:03:…
Alzea Arafat
  • 1
  • 1
  • 2
0
votes
1 answer

Lighttpd equivalent of Apache Files directive?

I'm trying to convert some rules and settings from Apache to lighttpd but i'm stuck with this Files rule: order allow,deny deny from all
0
votes
1 answer

How to redirect to localhost home on entering any non existing url?

I am working on an intranet application running over Lighttpd server, it is hosted on 192.168.0.1 and there is nothing else on server. I want to redirect any page request made to server (e.g.: "xyz.com") redirect on 192.168.0.1. I am working on…
Anil Shahu
0
votes
1 answer

Segmentation fault lighttpd

Hey guys, I can't figure this out, when I add the fastcgi module to lighttpd when I try to connect to a php page, I get a segmentation fault error. Nothing is in the error log, and nothing else is printed on the crash. It seems to only be a problem…
Jess
  • 389
  • 1
  • 6
  • 16
0
votes
2 answers

Reverse proxy server that lets you explicitly define mapping based on request URI?

I'm looking for a reverse proxy solution which either: a) Let's me explicitly define which requests go to which servers based on a regex (or some other similar way of defining that certain URL patterns get mapped to certain back-end servers) OR b)…
Keith Palmer Jr.
  • 1,173
  • 4
  • 16
  • 29
0
votes
1 answer

Lighttpd, PHP, WordPress and permissions

I'm wondering why WordPress isn't able to install or update themes and plugins. I can upload files thought. This is a permissions problem, even when I CHMOD 0777 on the wp-content/themes and wp-content/plugins directory it still doesn't work. I know…
Ahmed Nuaman
  • 304
  • 1
  • 2
  • 8
0
votes
1 answer

lighttpd fails while enabling mod_proxy

i am trying to set up an server with lighttpd and tomcat my conf is below server.modules = ( "mod_access", "mod_alias", "mod_accesslog", "mod_compress" "mod_proxy", …
lal
  • 1
  • 1
0
votes
1 answer

phpmyadmin on lighttpd gives me a 403 forbidden need help

Whats the problem: When I goto //localhost/phpmyadmin I get what I would get if I did //localhost/, I'm using both http: and https:. What did I do, that changed it: I simply reinstalled lighttpd. What I have tried: Disabling and re-enabling…
0
votes
1 answer

Add minType on specific folder?

I installed lighttpd-1.4.28 to serve static files,but I want to add mintype (html) on specific folder not all document root how, can do it ?
0
votes
1 answer

lighttpd with multiple IPs, each with a UCC certificate and many hostnames

I'd like to get lighttpd working with UCC certificates, but I can't seem to figure out the correct syntax. Essentially, for each IP address, I have one UCC certificate and a bunch of hostnames. $SERVER["socket"] == "10.0.0.1:443" { ssl.engine …
David
  • 3,487
  • 26
  • 20