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.conf | |
download | tbp-master.zip tbp-master.tar.gz |
Diffstat (limited to 'docker/tbp/etc/lighttpd/mod_fastcgi.conf')
-rw-r--r-- | docker/tbp/etc/lighttpd/mod_fastcgi.conf | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/docker/tbp/etc/lighttpd/mod_fastcgi.conf b/docker/tbp/etc/lighttpd/mod_fastcgi.conf new file mode 100644 index 0000000..549b84c --- /dev/null +++ b/docker/tbp/etc/lighttpd/mod_fastcgi.conf @@ -0,0 +1,17 @@ +############################################################################### +# mod_fastcgi.conf +# include'd by lighttpd.conf. +# $Header: /var/cvsroot/gentoo-x86/www-servers/lighttpd/files/conf/mod_fastcgi.conf-1.4.13-r2,v 1.1 2007/04/01 23:22:00 robbat2 Exp $ +############################################################################### + +server.modules += ("mod_fastcgi") +fastcgi.server = ( ".php" => + ( "localhost" => + ( + "socket" => "/run/lighttpd/lighttpd-fastcgi-php-" + PID + ".socket", + "bin-path" => "/usr/bin/php-cgi" + ) + ) + ) + +# vim: set ft=conf foldmethod=marker et : |