2

Im looking to change the Apache Environment LANG from C to en_GB.UTF-8 but cant find where. Inside /etc/apache2/apache2.conf I added AddDefaultCharset UTF-8, based on this, restarted apache but the LANG is still set to C.

Running locale -a in terminal, I see en_GB.utf8 and others. How to set the default for apache to en_GB.UTF-8?

set | grep -i utf shows me LANG=en_GB.UTF-8

enter image description here

Sylar
  • 11,422
  • 25
  • 93
  • 166

1 Answers1

3

Take a look on /etc/apache2/envvars

## Uncomment the following line to use the system default locale instead:

#. /etc/default/local here

tmp
  • 31
  • 2