| David Reiss | 755c815 | 2009-03-26 06:15:05 +0000 | [diff] [blame^] | 1 | #!/usr/bin/env python |
| 2 | import os | ||||
| 3 | import BaseHTTPServer | ||||
| 4 | import CGIHTTPServer | ||||
| 5 | |||||
| 6 | # chdir(2) into the tutorial directory. | ||||
| 7 | os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(__file__)))) | ||||
| 8 | |||||
| 9 | class Handler(CGIHTTPServer.CGIHTTPRequestHandler): | ||||
| 10 | cgi_directories = ['/php'] | ||||
| 11 | |||||
| 12 | BaseHTTPServer.HTTPServer(('', 8080), Handler).serve_forever() | ||||