aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcedricbonhomme <devnull@localhost>2011-10-02 18:49:46 +0200
committercedricbonhomme <devnull@localhost>2011-10-02 18:49:46 +0200
commitaee8509ab2af3814691c65b478b5c84a55957228 (patch)
treeb4dd94359c012725ae63450371dcf4ebca11d9ba
parentMinor changes to the /article page (sharing links). (diff)
downloadnewspipe-aee8509ab2af3814691c65b478b5c84a55957228.tar.gz
newspipe-aee8509ab2af3814691c65b478b5c84a55957228.tar.bz2
newspipe-aee8509ab2af3814691c65b478b5c84a55957228.zip
Updated CherryPy configuration.
-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