From 015b9cb1b2f808624ae693327090aa8514438226 Mon Sep 17 00:00:00 2001 From: Martin Miller Date: Thu, 10 Dec 2020 18:17:07 -0600 Subject: Initial commit --- docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf (limited to 'docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf') diff --git a/docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf b/docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf new file mode 100644 index 0000000..926137a --- /dev/null +++ b/docker/tbp/etc/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.1