Skip to content

Instantly share code, notes, and snippets.

@tomprince
Created December 10, 2013 22:14
Show Gist options
  • Save tomprince/7901259 to your computer and use it in GitHub Desktop.
Save tomprince/7901259 to your computer and use it in GitHub Desktop.
from twisted.web import twcgi, static
class PHPScript(twcgi.FilteredScript):
filter = "/usr/bin/php-cgi"
resource = static.File("/usr/share/webapps/ganglia-web/3.5.2/htdocs/")
resource.processors = {
'.php': PHPScript,
}
resource.directoryListing = lambda : resource.getChild("index.php", None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment