aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
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