aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cfg/cherrypy.cfg4
1 files changed, 3 insertions, 1 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
bgstack15