aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-01-13 16:56:24 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-01-13 16:56:24 +0000
commit24de3e574b3a14e997484e356e1e18b87b35cc3a (patch)
treec25d7ca5b84e570603c9bb774c12405e872f1e90 /lib/python
parentd91f2da4c8737499c4f4b97508d12515e50994ce (diff)
downloadenigma2-24de3e574b3a14e997484e356e1e18b87b35cc3a.tar.gz
enigma2-24de3e574b3a14e997484e356e1e18b87b35cc3a.zip
do as thedoc says...
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Plugins/web/plugin.py5
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