Skip to content

Commit 5ae9398

Browse files
author
Filip Kula
committed
fix: utf8 support
1 parent de1f827 commit 5ae9398

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

nginx.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@ http {
44
include /etc/nginx/mime.types;
55
default_type application/octet-stream;
66

7+
charset utf-8;
8+
charset_types text/plain text/css application/json application/javascript text/xml application/xml text/javascript;
9+
710
upstream django {
811
server django-web:8000;
912
}
@@ -38,6 +41,7 @@ http {
3841
server_name kola.kia.prz.edu.pl;
3942

4043
charset utf-8;
44+
charset_types text/plain text/css application/json application/javascript text/xml application/xml text/javascript;
4145

4246
client_max_body_size 10M;
4347
client_body_timeout 60s;

0 commit comments

Comments
 (0)