适配PC或移动设备

新建2个文件夹

  1. mobile/index.html
  2. pc/index.html

clipboard.png

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;
     }
}

clipboard.png
### pc

clipboard.png

mobile

clipboard.png

Gzip压缩配置

nginx.conf

    gzip on;   //开启
    gzip_types text/plain application/javascript text/css;  //压缩的类型:html,js,css

clipboard.png

clipboard.png

未开启

查询网站
http://tool.chinaz.com/Gzips/

clipboard.png

已开启

clipboard.png


渣渣辉
1.3k 声望147 粉丝