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

本文共 1994 字,大约阅读时间需要 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页面就显示了。

 

转载于:https://www.cnblogs.com/zydev/p/5828069.html

你可能感兴趣的文章
14款下载有用脚本的超酷网站
查看>>
LXC-Linux Containers介绍
查看>>
ios app 真机crash报告分析
查看>>
CRC标准以及简记式
查看>>
SEO搜索引擎
查看>>
关于本地使用tomcat部署web应用,浏览器自动跳转为https的问题
查看>>
一、Text To Speech
查看>>
Java读取并下载网络文件
查看>>
github上构建自己的个人网站
查看>>
在word中粘贴的图片为什么显示不完整
查看>>
SQL Server 数据库的鼠标操作
查看>>
net软件工程师求职简历
查看>>
SQL SERVER BOOK
查看>>
JS基础回顾,小练习(判断数组,以及函数)
查看>>
多任务——进程
查看>>
WCF:如何将net.tcp协议寄宿到IIS
查看>>
WebAPI HelpPage支持area
查看>>
Path元素
查看>>
php_soap扩展应用
查看>>
第二百三十一节,Bootstrap 介绍
查看>>