diff --git a/docs/development.rst b/docs/development.rst index 558f3bce66d044b8c553a5469dc10abc68f22fee..5013913dff8082fcae4518e4d5347fd8d58ec1d5 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -414,7 +414,7 @@ In order to deploy the test site, the following steps would normally be taken: ansible-playbook playbooks/preseed.yml 9. Install all servers using the generated preseed files. Use *Debian - 11 Bullseye*. + 12 Bookworm*. 10. Add the SSH host fingerprints to your ``known_hosts`` file (don't forget to remove old entries if you are redoing the process). You can easily obtain all diff --git a/testsite/playbooks/roles/wsgihello/files/hello.wsgi b/testsite/playbooks/roles/wsgihello/files/hello.wsgi index d284cda068c5ba655f6fe0e5886d37765f53907d..9ab419b53ada19b98696b0846fab961bd0f25b93 100644 --- a/testsite/playbooks/roles/wsgihello/files/hello.wsgi +++ b/testsite/playbooks/roles/wsgihello/files/hello.wsgi @@ -25,4 +25,4 @@ def application(environ, start_response): ('Content-Length', str(len(output)))] start_response(status, response_headers) - return [output] + return [output.encode('utf-8')]