lighttpd Questions
1
I have a front facing lighttpd server on my domain that redirects a specific URL to a tomcat 8 application server. So, traffic to mydomain.com/app will be pushed to tomcat.
Tomcat, however, sees t...
1
How to set up lighttpd in order to make environment variables available to spawned processes?
I have an executable being called through CGI as an URL (e.g. http://.../cgi-bin/executable.bin).
The...
Staal asked 2/3, 2015 at 19:39
2
I am trying to send files by using X-Sendfile directive in lighttpd.
My php code is;
header("Content-Type: application/force-download");
header( "Content-Disposition: attachment; filename=" . 's....
1
I'd like to understand the best way to secure Mosquitto when surfacing an MQTT broker over websockets to a browser. I'm currently using Lighttpd for the websocket layer, as per this blog post.
My ...
Wolcott asked 30/6, 2014 at 10:55
2
Solved
I have this scenario:
A user comes to my site and follows a link, which doesn't exists anymore, he should be redirected to a custom errorpage. (that works)
If a user does something, that throws an ...
Narbada asked 15/2, 2012 at 14:28
2
I'm running a Lighttpd webserver using FastCGI and the webserver does not output PHP Parse Errors.
My php.ini file has the following settings:
error_reporting = E_ALL
display_errors = Off
display...
Olindaolinde asked 23/1, 2013 at 2:49
3
Solved
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 a...
Among asked 22/1, 2010 at 5:11
5
Solved
According to language benchmarks, JavaScript V8 is faster than other programming languages at regex-dna program. So, why node.js applications (i.e. http server) isn't faster than C applications (i....
Feckless asked 18/11, 2010 at 22:36
3
Solved
When I start Apache Bench test:
ab -n 10000 -c 1300 http://example.com/test.php
I get error:
socket: Too many open files (24)
When I change it to '-c 1000' it works fine.
Because I can have mor...
Centre asked 1/10, 2009 at 15:18
1
I have tried to do this for months without success so I decided to finally ask if anyone has done it.
I am trying to setup svn over https without an apache web server. This can be done with git re...
3
I recall a very fast kernel module for Linux called "TUX" for static files to answer IIS's superior-to-Linux static file web-serving performance and solve the "C10K problem." Now I keep seeing:
N...
Jungle asked 15/11, 2013 at 0:25
1
Solved
I have a lighttpd-Setup pointing to the document-root /var/www. However, I want the URL other/ to point to /some/other/dir. This I'm doing with the following config:
$HTTP["url"] =~ "^/other($|/)"...
Bollinger asked 13/11, 2012 at 12:54
1
I am trying to create a button on a webpage quad_relay.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.o$
<html xmlns="http://www.w3.org/1999/xhtml">
&l...
4
Solved
I am investigating the possibility of using Node to act as a reverse proxy. One of the primary goals of my project is for it to be VERY high performance. So I've setup a node server to proxy reques...
Nolte asked 1/11, 2011 at 19:39
1
Solved
I've written a website in node.js and express. Now I configured lighttpd to use the node.js server with an subdirectory:
$HTTP["url"] =~ "^/app/" {
proxy.server = ( "" => ( (
"host" => "12...
2
Solved
Possible Duplicate:
I never really understood: what is CGI?
In the lighttpd config, we define two paths (as shown below), one of them is the binary of PHP, the other is the socket pat...
6
7
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 t...
4
Solved
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?
Infelicitous asked 14/11, 2008 at 13:48
3
I installed lighttpd web server on my Windows computer and I have a problem: in PHP files no $_GET and $_POST variables are defined.
For example I have this simple script (tmp.php):
<?php
ec...
1
Solved
I have a website hosted on lighttpd, accessible at the "www" subdomain. I also have a chat server listening on port 8124 made with node.js and socket.io.
I want all client traffic to happen on por...
1
I am trying to configure Lighttpd to act as a reverse proxy. I want to have several URLs that are proxied to different servers on different ports, either on the same machine or within the local net...
Kussell asked 19/2, 2012 at 19:9
1
Solved
I'm using Apache in all my Magento installations. I wonder if I should start to use Lighttpd or Nginx to improve performance. What do you think?
EDIT 1
I've seen that:
nginx:
http://www.m...
1
Solved
Does anyone know how to configure lighttpd to handle plain CGI executables, in this case written in C? I have compiled a test program (test.cgi) and put it in $HOME/public_html/cgi-bin. I have also...
3
Solved
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 Li...
Hammel asked 8/2, 2011 at 10:15
© 2022 - 2024 — McMap. All rights reserved.