move port to cfg

This commit is contained in:
James Vasile 2011-12-16 23:42:18 -05:00 committed by James Vasile
parent ce4b594f65
commit bc8887e8b6
2 changed files with 8 additions and 5 deletions

View File

@ -12,6 +12,9 @@ users_dir = os.path.join(data_dir, "users")
product_name = "Plinth"
box_name = "Freedom Plug"
port = 8000
## Do not edit below this line ##
html_root = None
main_menu = Menu()

View File

@ -81,14 +81,14 @@ def write_cherrypy_config():
[global]
server.socket_host = '0.0.0.0'
server.socket_port = 8000
server.socket_port = %(port)s
server.thread_pool = 10
tools.staticdir.root = "{fileroot}"
tools.staticdir.root = "%(fileroot)s"
tools.sessions.on = True
tools.auth.on = True
tools.sessions.storage_type = "file"
tools.sessions.timeout = 90
tools.sessions.storage_path = "{fileroot}/data/cherrypy_sessions"
tools.sessions.storage_path = "%(fileroot)s/data/cherrypy_sessions"
[/static]
tools.staticdir.on = True
@ -96,8 +96,8 @@ tools.staticdir.dir = "static"
[/favicon.ico]
tools.staticfile.on = True
tools.staticfile.filename = "{fileroot}/static/theme/favicon.ico"
""".format(fileroot=cfg.file_root))
tools.staticfile.filename = "%(fileroot)s/static/theme/favicon.ico"
""" % {'port':cfg.port, 'fileroot':cfg.file_root})
def parse_arguments():
parser = argparse.ArgumentParser(description='Plinht web interface for the FreedomBox.')