适配PC或移动设备
新建2个文件夹
- mobile/index.html
- pc/index.html
default.conf
server{
listen 80;
server_name pengyongjie.top;
location / {
root /usr/share/nginx/html/pc;
if ($http_user_agent ~* '(Android|webOS|iPhone|iPod|BlackBerry)') {
root /usr/share/nginx/html/mobile;
}
index index.html;
}
}
### pc
mobile
Gzip压缩配置
nginx.conf
gzip on; //开启
gzip_types text/plain application/javascript text/css; //压缩的类型:html,js,css
未开启
查询网站
http://tool.chinaz.com/Gzips/
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。