aboutsummaryrefslogtreecommitdiffstats
path: root/main/lighttpd/mod_fastcgi_fpm.conf
diff options
context:
space:
mode:
authorMatt Smith <mcs@darkregion.net>2010-12-30 15:36:45 -0600
committerNatanael Copa <ncopa@alpinelinux.org>2010-12-31 08:11:58 +0000
commitfe5b95b92e7d47dc14eb1205eb3be0b6ec163150 (patch)
treeb4031d903b7d6f5ea6f21beb74792fdb3fa1e792 /main/lighttpd/mod_fastcgi_fpm.conf
parentbbd0fe18f769c7ffec20dd3c68ba72b0ad8f32b2 (diff)
main/lighttpd: added fastcgi fpm config
Diffstat (limited to 'main/lighttpd/mod_fastcgi_fpm.conf')
-rw-r--r--main/lighttpd/mod_fastcgi_fpm.conf16
1 files changed, 16 insertions, 0 deletions
diff --git a/main/lighttpd/mod_fastcgi_fpm.conf b/main/lighttpd/mod_fastcgi_fpm.conf
new file mode 100644
index 00000000000..926137a434a
--- /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 :