diff options
author | Matt Smith <mcs@darkregion.net> | 2010-12-30 15:36:45 -0600 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2010-12-31 08:11:58 +0000 |
commit | fe5b95b92e7d47dc14eb1205eb3be0b6ec163150 (patch) | |
tree | b4031d903b7d6f5ea6f21beb74792fdb3fa1e792 /main/lighttpd/mod_fastcgi_fpm.conf | |
parent | bbd0fe18f769c7ffec20dd3c68ba72b0ad8f32b2 (diff) | |
download | aports-fe5b95b92e7d47dc14eb1205eb3be0b6ec163150.tar.bz2 aports-fe5b95b92e7d47dc14eb1205eb3be0b6ec163150.tar.xz |
main/lighttpd: added fastcgi fpm config
Diffstat (limited to 'main/lighttpd/mod_fastcgi_fpm.conf')
-rw-r--r-- | main/lighttpd/mod_fastcgi_fpm.conf | 16 |
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 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 : |