We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 18c1d8b commit a7a602bCopy full SHA for a7a602b
docker/base/httpd_setup.sh
@@ -39,3 +39,13 @@ EOF
39
/usr/libexec/httpd-ssl-gencerts
40
fi
41
42
+
43
+# The default system locale with unicode support
44
+LANG=C.UTF-8
45
46
+# Override the default locale if configured
47
+if [[ "${KOLLA_BASE_DISTRO}" =~ debian|ubuntu ]]; then
48
+ [ -f /etc/default/locale ] && . /etc/default/locale
49
+else
50
+ [ -f /etc/locale.conf ] && . /etc/locale.conf
51
+fi
releasenotes/notes/configure-apache-locale-d0150e5881f00e65.yaml
@@ -0,0 +1,7 @@
1
+---
2
+fixes:
3
+ - |
4
+ Apache services like Keystone now started with correct unicode locale.
5
+ Keystone under Apache on Ubuntu will fail with a UnicodeEncodeError
6
+ when LDAP driver and DEBUG are enabled.
7
+ `LP#2076453 <https://bugs.launchpad.net/kolla/+bug/2076453>`__
0 commit comments