summaryrefslogtreecommitdiff
path: root/system/lighttpd/mod_fastcgi_fpm.conf
diff options
context:
space:
mode:
Diffstat (limited to 'system/lighttpd/mod_fastcgi_fpm.conf')
-rw-r--r--system/lighttpd/mod_fastcgi_fpm.conf16
1 files changed, 16 insertions, 0 deletions
diff --git a/system/lighttpd/mod_fastcgi_fpm.conf b/system/lighttpd/mod_fastcgi_fpm.conf
new file mode 100644
index 000000000..926137a43
--- /dev/null
+++ b/system/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 :