From b4ae68730a1cf1987dd7b72007551dd45d008fd7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Sachse?= <joerg.sachse@slub-dresden.de> Date: Mon, 2 Dec 2024 11:16:06 +0100 Subject: [PATCH] fix: explicitely set encoding of start page to make sure it's displayed correctly in the browser --- tasks/configure_apache.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tasks/configure_apache.yml b/tasks/configure_apache.yml index 946239d..7ec71af 100644 --- a/tasks/configure_apache.yml +++ b/tasks/configure_apache.yml @@ -68,7 +68,10 @@ block: | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> - <head></head> + <head> + <meta http-equiv="Content-Type" + content="text/html; charset=utf-8"> + </head> <body> <h2>PDF/A-Webservice</h2> <div> -- GitLab