博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
nginx相关优化
阅读量:6070 次
发布时间:2019-06-20

本文共 1945 字,大约阅读时间需要 6 分钟。

1.配置监控nginx状态信息

vim /usr/locale/nginx/conf/nginx.conf

server {          listen 8080;          server_name   192.168.1.30;          location / {                stub_status on;                access_log off;                allow 192.168.1.150;   ##只允许该IP访问                deny all;        }    }

访问浏览器显示

2.我们都知道在apache下可以配置访问web服务器的某个路径时,自动显示其目录下面的文件列表的,其实Nginx一点也不比apache弱,它当然也可以实现这个功能,而且还非常容易和简单;主要用到autoindex 这个参数来开启,其配置如下

server {    listen 80;    server_name  www.nginx.com nginx.com;    location / {        root /data/www/file;        autoindex on;        autoindex_localtime on;        autoindex_exact_size off;        index index.html index.php;    }    access_log /tmp/test.log;}

3.配置extra

vim conf/nginx.conf 增加该行即可: include extra/vhost.conf;

添加extra

[root@lnmp nginx]# ls conf/extra/vhost.conf

 

缓存优化

location / {            root   html;            index  index.html index.htm index.php;        }        location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$        {             expires      10y;           root   html;        }        location ~ .*\.(js|css)?$        {           expires      360d;            root   html;        }

可以利用YSlow工具进行查看

缓存时间发生了改变

也可以用curl -I进行查看

 

压缩优化

#error_page  404              /404.html;        gzip on;        gzip_min_length  1k;        gzip_buffers     4 16k;   #4个单位为16K的内存作为压缩结果的缓存流,默认是原始数据相同大小的内存        gzip_http_version 1.1;        gzip_comp_level 2;        #9为最高级别        gzip_types  text/plain application/x-javascript text/css application/xml;        gzip_vary on;             #是前端的缓存服务器可以通过Nginx压缩的数据

 

错误页面跳转

server {    listen 80;    server_name  www.nginx.com nginx.com;    location / {        root /data/www/file;        index index.html index.php;    }    location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)$       {          root /data/www/file;          expires 10y;          }    error_page  403   /403.html;             #相对于/data/www/file    access_log /tmp/test.log;}

IE 浏览器有时候没有优雅显示,加大404或者403的html页面就显示了。

 

转载地址:http://jbfgx.baihongyu.com/

你可能感兴趣的文章
Delphi脚本语言注入
查看>>
Sql Server 日期查询
查看>>
对xml文件的简单解析
查看>>
【转】linux 同步IO: sync msync、fsync、fdatasync与 fflush
查看>>
Charles 使用
查看>>
springboot微信点餐系统项目设计
查看>>
检测cpu是否支持虚拟化和二级地址转换【转】
查看>>
首发感言
查看>>
用实例浅谈WCF实例与并发
查看>>
How to use JDBC-Authentication of Spring Boot/Spring Security with Flyway
查看>>
Class loader:static
查看>>
POJ 3261 后缀数组
查看>>
SQL 语言分类
查看>>
CTSC2018 青蕈领主
查看>>
Linux Shell 程序调试
查看>>
[javaSE] 看知乎学习反射
查看>>
Python读取redis数据
查看>>
删除treeview下的节点(包括子节点),不管在第几层
查看>>
SMARTFORM 小技巧
查看>>
一道练习题引发的思考
查看>>