blob: d24efd5e6d022a59b0ce8004bc0e3ca2e9c49914 [file] [log] [blame]
David Reiss755c8152009-03-26 06:15:05 +00001#!/usr/bin/env python
2import os
3import BaseHTTPServer
4import CGIHTTPServer
5
6# chdir(2) into the tutorial directory.
7os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
8
9class Handler(CGIHTTPServer.CGIHTTPRequestHandler):
10 cgi_directories = ['/php']
11
12BaseHTTPServer.HTTPServer(('', 8080), Handler).serve_forever()