前端之家收集整理的这篇文章主要介绍了
NGINX配置 缺少类型配置,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<table class="text"><tbody><tr class="li1">
<td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
Nginx要指定类型,不然浏览器就会无法解析css等。
events {
}
http {
types {
text/html html htm shtml;
text/css css;
text/xml xml;
image/gif gif;
image/jpeg jpeg jpg;
application/javascript js;
application/atom+xml atom;
application/
RSS+xml
RSS;
}
server {
listen 7777;
server_name localhost;
# 开启gzip
gzip on;
# 启用gzip压缩的最小
文件,小于设置值的
文件将不会压缩
gzip_min_length 1k;
# gzip 压缩级别,1-10,数字越大压缩的越好,也越占用
cpu时间,后面会有详细说明
gzip_comp_level 2;
# 进行压缩的
文件类型。javascript有多种形式。其中的值可以在 mime.types
文件中找到。
gzip_types text/plain application/javascript application/x-javascript text/css application/xml text/javascript application/x-httpd-
PHP image/jpeg image/gif image/png;
# 是否在http header中
添加Vary: Accept-Encoding,建议开启
gzip_vary on;
# 禁用IE 6 gzip
gzip_disable "MSIE [1-6]\.";
#charset koi8-r;
#access_log /var/log/
Nginx/log/host.access.log main;
root /Users/tangdaoyuan/code/anheng/security-week-display-screen-fe/dist;
client_max_body_size 10m;
location / {
try_files $uri $uri/ /index.html;
}
location /socket.io/ {
proxy_pass http://127.0.0.1:7001/socket.io/;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
}
原文链接:https://www.f2er.com/note/413493.html