/usr/lib/cgi-bin/tilecache.fcgi is in tilecache 2.11-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 | #!/usr/bin/python
from TileCache.Service import wsgiApp
if __name__ == '__main__':
from flup.server.fcgi_fork import WSGIServer
WSGIServer(wsgiApp).run()
|