Django,nginx,gunicorn,supervisor:UnicodeEncodeError - 上传非拉丁文件时

时间:2015-01-25 14:38:26

标签: django nginx supervisor

当我上传一些非拉丁名字的文件时,我收到了错误:

UnicodeEncodeError at /profiles/
'ascii' codec can't encode characters in position 39-41: ordinal not in range(128)

我已尝试更改主管环境如何描述here,但它没有帮助。我在/etc/supervisor/supervisord.conf中添加了这一行:

[supervisord]
environment=LANG="ru_RU.utf8", LC_LANG="ru_RU.UTF-8", LC_ALL="ru_RU.UTF-8"
logfile=/var/log/supervisor/supervisord.log ; (main log file;default $CWD/supervisord.log)
pidfile=/var/run/supervisord.pid ; (supervisord pidfile;default supervisord.pid)
childlogdir=/var/log/supervisor            ; ('AUTO' child log dir, default $TEMP)

当我将这一行放在程序特定的conf文件中时,它也没有开始工作。

我已经尝试弄清楚我的编码,所以我已将此变量添加到模板上下文中:

context['locale'] = sys.getfilesystemencoding()

并在模板中显示" ANSI_X3.4-1968"

可以请某人解释为什么改变环境没有解决问题?

感谢。

1 个答案:

答案 0 :(得分:3)

确保您完全重新启动了supervisord,如here所述。希望它有所帮助!