From 4fc162b07b2e9d8489e16ed647e5d96f5c66e10a Mon Sep 17 00:00:00 2001 From: Lars Wirzenius Date: Mon, 20 Jan 2014 14:24:27 +0000 Subject: Add new Lorry Controller --- etc/lighttpd/lorry-controller-webapp-httpd.conf | 33 +++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 etc/lighttpd/lorry-controller-webapp-httpd.conf (limited to 'etc') diff --git a/etc/lighttpd/lorry-controller-webapp-httpd.conf b/etc/lighttpd/lorry-controller-webapp-httpd.conf new file mode 100644 index 0000000..ec92783 --- /dev/null +++ b/etc/lighttpd/lorry-controller-webapp-httpd.conf @@ -0,0 +1,33 @@ +server.document-root = "/var/www/htdocs" + +server.port = 12765 + +server.username = "lorry" +server.groupname = "lorry" + +server.modules += ("mod_cgi", "mod_fastcgi") + +mimetype.assign = ( + ".html" => "text/html", + ".txt" => "text/plain", + ".jpg" => "image/jpeg", + ".png" => "image/png", + ".css" => "text/css" +) + +$SERVER["socket"] == ":12765" { + server.username = "lorry" + server.groupname = "lorry" + fastcgi.server = ( + "" => + ( + "python-fcgi" => + ( + "socket" => "/run/lighttpd-lorry/lorry-controller-webapp.socket", + "bin-path" => "/usr/bin/lorry-controller-webapp --config=/etc/lorry-controller/webapp.conf", + "check-local" => "disable", + "max-procs" => 16, + ) + ) + ) +} -- cgit v1.2.1