diff options
author | mjfernez <mjfernez@gmail.com> | 2021-06-07 19:47:59 -0400 |
---|---|---|
committer | mjfernez <mjfernez@gmail.com> | 2021-06-07 19:48:59 -0400 |
commit | a4ef784946330abc6aed8e03accdf7541881df0f (patch) | |
tree | f0f191554f09e92feedae1b06bbb013c801c2b25 /siteconfig.py | |
parent | e36167843d8b23c057d244d38a7f96b584db2912 (diff) | |
download | ezcms-a4ef784946330abc6aed8e03accdf7541881df0f.tar.gz |
wsgi compatibility
Moves the setup() function outside of main so the app is setup before a
wrapper runs it. Also fixes deployment tutorial in the README
Diffstat (limited to 'siteconfig.py')
-rw-r--r-- | siteconfig.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/siteconfig.py b/siteconfig.py index 28c3cbd..8dbe006 100644 --- a/siteconfig.py +++ b/siteconfig.py @@ -4,8 +4,6 @@ class siteconfig: HOME_TITLE = "WELCOME" # "HELLO WORLD!" LINKS_FILE = ".links" # ".lnx" DESC_FILE = ".description" # ".desc`" - HOST = "127.0.0.1" # "192.168.1.1" "1.2.3.4" - PORT = 8000 # 8080, 8001, 8002 DEFAULT_MIMETYPE = "application/octet-stream" # "text/plain" MIMETYPES = {} |