diff options
author | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 11:00:17 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2021-07-03 11:00:17 -0400 |
commit | 38fa2d5f8501ca8d53a832dff2c81b2693cf5d0c (patch) | |
tree | 4ecab371b704476093d415bc8bae884b5818686d | |
parent | 5154120849a68db184648da7034e5c5ce27ea04c (diff) | |
download | carpentertutoring-38fa2d5f8501ca8d53a832dff2c81b2693cf5d0c.tar.xz carpentertutoring-38fa2d5f8501ca8d53a832dff2c81b2693cf5d0c.zip |
fixed CGI runner
-rw-r--r-- | usr/local/etc/lighttpd/conf.d/cgi.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr/local/etc/lighttpd/conf.d/cgi.conf b/usr/local/etc/lighttpd/conf.d/cgi.conf index 8cc92db..cee0470 100644 --- a/usr/local/etc/lighttpd/conf.d/cgi.conf +++ b/usr/local/etc/lighttpd/conf.d/cgi.conf @@ -1,2 +1,2 @@ server.modules += ( "mod_cgi" ) -cgi.assign = ( ".php" => "" ) +cgi.assign = ( ".php" => "/usr/local/bin/php-cgi" ) |