Allow specifying a directory to host a web client from

This commit is contained in:
Erik Johnston 2015-08-25 12:01:23 +01:00
parent 571ac105e6
commit 86cef6a91b
2 changed files with 6 additions and 3 deletions

View file

@ -22,6 +22,7 @@ class ServerConfig(Config):
self.server_name = config["server_name"]
self.pid_file = self.abspath(config.get("pid_file"))
self.web_client = config["web_client"]
self.web_client_location = config.get("web_client_location", None)
self.soft_file_limit = config["soft_file_limit"]
self.daemonize = config.get("daemonize")
self.print_pidfile = config.get("print_pidfile")