From e523e01760f56e76793730d083520ca2bed76ccf Mon Sep 17 00:00:00 2001 From: Alban Date: Mon, 26 Aug 2013 12:38:01 +0200 Subject: [PATCH] Update README.md Added some info on running Supysonic as a WSGI app --- README.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 578eb4a..7616338 100755 --- a/README.md +++ b/README.md @@ -65,7 +65,6 @@ To run it within an Apache2 server, first you need to install the WSGI module an apt-get install libapache2-mod-wsgi a2enmod wsgi - service apache2 reload Next, edit the Apache configuration to load the application. Here's a basic example of what it looks like: @@ -76,6 +75,12 @@ Next, edit the Apache configuration to load the application. Here's a basic exam Allow from all +You might also need to run Apache using the system default locale, as the one it uses might cause problems while +scanning the library. To do so, edit the `/etc/apache2/envvars` file, comment the line `export LANG=C` and +uncomment the `. /etc/default/locale` line. Then you can restart Apache. + + service apache2 restart + With that kind of configuration, the server address will look like *http://server/supysonic/* Quickstart