diff options
author | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-15 08:22:03 +0100 |
---|---|---|
committer | Cédric Bonhomme <kimble.mandel@gmail.com> | 2013-03-15 08:22:03 +0100 |
commit | 608e28a69d1423cd3c36c7db75186788c5ba5756 (patch) | |
tree | 23cc6232d5b95c56e34573df7691ed5270992e49 | |
parent | Updated template lookup directory. (diff) | |
download | newspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.tar.gz newspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.tar.bz2 newspipe-608e28a69d1423cd3c36c7db75186788c5ba5756.zip |
Updated CherryPy configuration.
-rw-r--r-- | source/cfg/cherrypy.cfg | 4 |
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 |