diff options
author | Martin Miller | 2020-12-10 18:17:07 -0600 |
---|---|---|
committer | Martin Miller | 2020-12-10 18:17:07 -0600 |
commit | 015b9cb1b2f808624ae693327090aa8514438226 (patch) | |
tree | 7a4ab4557fb2e196c2b6b19743dae526d4f9d3bd /docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf | |
download | tbp-master.zip tbp-master.tar.gz |
Diffstat (limited to 'docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf')
-rw-r--r-- | docker/tbp/etc/lighttpd/mod_fastcgi_fpm.conf | 16 |
1 files changed, 16 insertions, 0 deletions
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 : |