aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cfg/cherrypy.cfg4
-rwxr-xr-xpyAggr3g470r.py1
2 files changed, 2 insertions, 3 deletions
diff --git a/cfg/cherrypy.cfg b/cfg/cherrypy.cfg
index 7b53c1a2..fe61c73d 100644
--- a/cfg/cherrypy.cfg
+++ b/cfg/cherrypy.cfg
@@ -1,6 +1,6 @@
[global]
-log.error_file = "error.log"
-log.access_file = "access.log"
+log.error_file = "var/error.log"
+log.access_file = "var/access.log"
server.environment = "production"
engine.autoreload_on = True
engine.autoreload_frequency = 5
diff --git a/pyAggr3g470r.py b/pyAggr3g470r.py
index 6f5f8841..8bc0a91d 100755
--- a/pyAggr3g470r.py
+++ b/pyAggr3g470r.py
@@ -32,7 +32,6 @@ __license__ = "GPLv3"
# - main page;
# - management;
# - history;
-# - history;
# - favorites;
# - notifications;
# - unread;
bgstack15