From fe5b95b92e7d47dc14eb1205eb3be0b6ec163150 Mon Sep 17 00:00:00 2001 From: Matt Smith Date: Thu, 30 Dec 2010 15:36:45 -0600 Subject: main/lighttpd: added fastcgi fpm config --- main/lighttpd/mod_fastcgi_fpm.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 main/lighttpd/mod_fastcgi_fpm.conf (limited to 'main/lighttpd/mod_fastcgi_fpm.conf') diff --git a/main/lighttpd/mod_fastcgi_fpm.conf b/main/lighttpd/mod_fastcgi_fpm.conf new file mode 100644 index 000000000..926137a43 --- /dev/null +++ b/main/lighttpd/mod_fastcgi_fpm.conf @@ -0,0 +1,16 @@ +############################################################################### +# mod_fastcgi_fpm.conf +# include'd by lighttpd.conf. +############################################################################### + +server.modules += ("mod_fastcgi") +fastcgi.server = ( ".php" => + ( "localhost" => + ( + "host" => "127.0.0.1", + "port" => "9000" + ) + ) + ) + +# vim: set ft=conf foldmethod=marker et : -- cgit v1.2.3