
nginx
你就像甜甜的益达
世界上所有的不公平都是由于当事人能力不足造成的!
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
深入浅出nginx
Nginx (engine x) 是一个高性能的HTTP和反向代理web服务器,同时也提供了IMAP/POP3/SMTP服务。Nginx是由伊戈尔·赛索耶夫为俄罗斯访问量第二的Rambler.ru站点(俄文:Рамблер)开发的,第一个公开版本0.1.0发布于2004年10月4日。2011年6月1日,nginx 1.0.4发布。其特点是占有内存少,并发能力强,事实上nginx的并发能力在同类型的网页服务器中表现较好,中国大陆使用nginx网站用户有:百度、京东、新浪、网易、腾讯、淘宝等。.........原创 2022-08-09 16:53:04 · 463 阅读 · 0 评论 -
nginx简单使用
nginx使用:/usr/local/nginx/sbin/nginx -t/usr/local/nginx/sbin/nginx -s reload原创 2018-10-29 09:32:48 · 240 阅读 · 0 评论 -
error: the HTTP cache module requires md5 functions from OpenSSL library
安装Nginx时报错./configure: error: the HTTP rewrite module requires the PCRE library.安装pcre-devel解决问题yum -y install pcre-devel错误提示:./configure: error: the HTTP cache module requires md5 functionsfrom...转载 2019-03-08 17:20:08 · 325 阅读 · 0 评论 -
nginx配置gzip
自己测试的nginx配置文件:gzip压缩,nginx缓存等等…http { include mime.types; default_type application/octet-stream; access_log /root/aaa/logs/nginx/access.log; sendfile on; #keep...原创 2019-03-11 11:03:10 · 619 阅读 · 0 评论