Nginx статика CSS
Сам index.html nginx отдает, однако, подключенные стили в html <link rel="stylesheet" type="text/css" href="/css/style.css"> в Response
передает в text/plain, соответственно ошибка MIME type.
Бьюсь уже полдня.
Памаги-и-и-те!!!! -))
Nginx.conf
events {}
http {
include /etc/nginx/mime.type; ###этот файл реально есть в папке
sendfile.on;
default_type application/octet-stream; ###хз че делает -))
server {
server_name 192.168.111.111
location / {
root /root/path/to/index/static;
index index.html;
}
}
}