Skip to content

Commit e0d2321

Browse files
author
Filip Kula
committed
fix: enchance utf-8 support
1 parent a7a08c6 commit e0d2321

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,8 @@ http {
44
include /etc/nginx/mime.types;
55
default_type application/octet-stream;
66

7+
charset utf-8;
8+
79
upstream django {
810
server django-web:8000;
911
}
@@ -40,6 +42,8 @@ http {
4042
ssl_certificate /etc/letsencrypt/live/kola.kia.prz.edu.pl/fullchain.pem;
4143
ssl_certificate_key /etc/letsencrypt/live/kola.kia.prz.edu.pl/privkey.pem;
4244

45+
charset utf-8;
46+
4347
location /static/ {
4448
alias /static/;
4549
}

0 commit comments

Comments
 (0)