Update docker/nginx.conf

This commit is contained in:
Zakary Timson 2022-05-03 16:33:43 +00:00
parent dc6e8f6c41
commit 5a4279c689

View File

@ -26,6 +26,14 @@ http {
location / {
try_files $uri$args $uri$args/ /index.html;
}
location ~ \.css {
add_header Content-Type text/css;
}
location ~ \.js {
add_header Content-Type application/x-javascript;
}
}
}