Python CGI script with lighttpd
1.Edit lighttpd.conf $sudo vim /etc/lighttpd/lighttpd.conf 1. Change cgi.assign = (“.php” => “/usr/bin/php5-cgi”) server.error-handler-404 = “/index.html” To cgi.assign = (“.php” => “/usr/bin/php5-cgi”, “.py” => “/usr/bin/python” ) server.error-handler-404 = “/index.html” 2. Change static-file.exclude-extensions = ( “.php”, “.pl”, “.fcgi”) To static-file.exclude-extensions = ( “.php”, “.pl”, “.fcgi”, “.py”) 3. Change index-file.names = ( “index.php”, “index.html”, “index.lighttpd.html” ) To index-file.names […]
Python CGI script with lighttpd Read More »