Skip to content

Commit 4c399d7

Browse files
author
Filip Kula
committed
feat: add mime support on production
1 parent 7b14882 commit 4c399d7

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

nginx.conf

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
events {}
22
http {
33

4+
include /etc/nginx/mime.types;
5+
default_type application/octet-stream;
6+
47
upstream django {
58
server django-web:8000;
69
}

nginx_staging.conf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ events {}
22
http {
33

44
include /etc/nginx/mime.types;
5+
default_type application/octet-stream;
56

67
upstream django {
78
server django-web:8000;

0 commit comments

Comments
 (0)