aboutsummaryrefslogtreecommitdiff
path: root/cfg
diff options
context:
space:
mode:
Diffstat (limited to 'cfg')
-rw-r--r--cfg/cherrypy.cfg4
-rwxr-xr-xcfg/pyAggr3g470r.cfg-sample6
2 files changed, 8 insertions, 2 deletions
diff --git a/cfg/cherrypy.cfg b/cfg/cherrypy.cfg
index 51440d6f..a419504d 100644
--- a/cfg/cherrypy.cfg
+++ b/cfg/cherrypy.cfg
@@ -10,6 +10,8 @@ engine.timeout_monitor.on = False
tools.staticdir.root = os.getcwd()
tools.staticdir.on = True
tools.staticdir.dir = "."
+tools.encode.on = True
+tools.encode.encoding = "utf8"
[/css]
tools.staticdir.on = True
@@ -19,4 +21,4 @@ tools.staticdir.match = "(?i)^.+\.css$"
[/images]
tools.staticdir.on = True
tools.staticdir.dir = "img"
-tools.staticdir.match = "(?i)^.+\.png$"
+tools.staticdir.match = "(?i)^.+\.png$" \ No newline at end of file
diff --git a/cfg/pyAggr3g470r.cfg-sample b/cfg/pyAggr3g470r.cfg-sample
index 63de4005..95db75c5 100755
--- a/cfg/pyAggr3g470r.cfg-sample
+++ b/cfg/pyAggr3g470r.cfg-sample
@@ -1,6 +1,10 @@
[global]
-sqlitebase = ./var/feed.db
max_nb_articles = 50
+[MongoDB]
+address = 127.0.0.1
+port = 27017
+user = username
+password = pwd
[mail]
mail_from = pyAggr3g470r@no-reply.com
mail_to = address_of_the_recipient@example.com
bgstack15