aboutsummaryrefslogtreecommitdiff
path: root/source
diff options
context:
space:
mode:
authorCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:22:03 +0100
committerCédric Bonhomme <kimble.mandel@gmail.com>2013-03-15 08:22:03 +0100
commit608e28a69d1423cd3c36c7db75186788c5ba5756 (patch)
tree23cc6232d5b95c56e34573df7691ed5270992e49 /source
parentUpdated template lookup directory. (diff)
downloadnewspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.tar.gz
newspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.tar.bz2
newspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.zip
Updated CherryPy configuration.
Diffstat (limited to 'source')
-rw-r--r--source/cfg/cherrypy.cfg4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cfg/cherrypy.cfg b/source/cfg/cherrypy.cfg
index 8e721e7b..ac05d330 100644
--- a/source/cfg/cherrypy.cfg
+++ b/source/cfg/cherrypy.cfg
@@ -17,10 +17,10 @@ tools.encode.encoding = "utf8"
[/css]
tools.staticdir.on = True
-tools.staticdir.dir = "css"
+tools.staticdir.dir = "static/css"
tools.staticdir.match = "(?i)^.+\.css$"
[/images]
tools.staticdir.on = True
-tools.staticdir.dir = "img"
+tools.staticdir.dir = "static/img"
tools.staticdir.match = "(?i)^.+\.png$" \ No newline at end of file
bgstack15