aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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