diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-01-13 16:56:24 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-01-13 16:56:24 +0000 |
| commit | 24de3e574b3a14e997484e356e1e18b87b35cc3a (patch) | |
| tree | c25d7ca5b84e570603c9bb774c12405e872f1e90 /lib | |
| parent | d91f2da4c8737499c4f4b97508d12515e50994ce (diff) | |
| download | enigma2-24de3e574b3a14e997484e356e1e18b87b35cc3a.tar.gz enigma2-24de3e574b3a14e997484e356e1e18b87b35cc3a.zip | |
do as thedoc says...
Diffstat (limited to 'lib')
| -rw-r--r-- | lib/python/Plugins/web/plugin.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/python/Plugins/web/plugin.py b/lib/python/Plugins/web/plugin.py index bdcbd058..b450b8cd 100644 --- a/lib/python/Plugins/web/plugin.py +++ b/lib/python/Plugins/web/plugin.py @@ -5,11 +5,10 @@ from twisted.web2 import server, http, static def autostart(): print "Web startup" - # For example, serve the /tmp directory - toplevel = static.File("/tmp") + toplevel = static.File("/hdd") site = server.Site(toplevel) - reactor.listenTCP(8080, http.HTTPFactory(site)) + reactor.listenTCP(80, http.HTTPFactory(site)) def autoend(): pass |
