Skip to content
Snippets Groups Projects
Commit 21935ffc authored by Nils Schneider's avatar Nils Schneider
Browse files

gluon-status-page: set html encoding to utf-8

parent 6da1677d
No related branches found
No related tags found
No related merge requests found
...@@ -51,6 +51,7 @@ io.write("Content-type: text/html\n\n") ...@@ -51,6 +51,7 @@ io.write("Content-type: text/html\n\n")
io.write("<!DOCTYPE html>\n") io.write("<!DOCTYPE html>\n")
io.write("<html>") io.write("<html>")
io.write("<head>") io.write("<head>")
io.write("<meta charset=\"utf-8\"/>")
io.write("<script src=\"/status.js\"></script>") io.write("<script src=\"/status.js\"></script>")
io.write("<title>" .. escape_html(hostname) .. "</title>") io.write("<title>" .. escape_html(hostname) .. "</title>")
io.write("</head>") io.write("</head>")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment