nginx-http-concat 是由淘宝开发的,用于合并静态资源使用的。
Nginx concat通过合并静态文件来减少http请求数来达到优化前端性能,可以在一定程度上能减少web服务器的压力。
下载地址:
wget https://codeload.git...
苏 demo
7年前 (2017-10-30)
3171℃
0喜欢
http_image_filter_module是nginx提供的集成图片处理模块,支持nginx-0.7.54以后的版本,在网站访问量不是很高磁盘有限不想生成多余的图片文件的前提下可,就可以用它实时缩放图片,旋转图片,验证图片有效性以及获取图片宽高以及图片类型信息,由于是即时计...
苏 demo
7年前 (2017-09-28)
3524℃
0喜欢
netcat(或简称 nc )是一个功能强大且易于使用的程序,可用于 Linux 中与 TCP、UDP 或 UNIX 域套接字相关的任何事情。
如题,
yum -y install nc
nc -zv 123.57.230.26 80
多个端口
nc -zv 192.168....
苏 demo
7年前 (2017-09-25)
2892℃
0喜欢
检测安装
nginx -V
修改配置文件
vim /usr/local/nginx/conf/vhost/tools.libaocai.com.conf
找到location /,
加入
stub_stats on;
配置示例:
然后检测配置
nginx -t
service...
苏 demo
7年前 (2017-09-25)
2904℃
0喜欢
ngxin 服务器
nginx做代理服务器架构图
为了方便配置和使用nginx,nginx核心模块ngx_http_core_module自带有许多内置的人性化变量
$arg_name:请求中的的参数名,即“?”后面的arg_name=arg_value形式的arg_nam...
苏 demo
7年前 (2017-09-25)
3579℃
0喜欢
安装Composer
# 下载composer.phar
curl -sS https://getcomposer.org/installer | php
# 把composer.phar移动到环境下让其变成可执行
mv composer.phar /...
苏 demo
7年前 (2017-09-06)
2038℃
0喜欢
curl出现curl: (2) Failed Initialization报错
报错可能是curl出问题了,下载curl包,重新编译curl
wget https://curl.haxx.se/download/curl-7.54.0.tar.gz
tar -zxvf curl-...
苏 demo
7年前 (2017-09-06)
3518℃
0喜欢
安装步骤
wget http://pecl.php.net/get/zendopcache-7.0.5.tgz
tar xzf zendopcache-7.0.5.tgz
cd zendopcache-7.0.5
/usr/local/php/bin/phpize (此处根据实...
苏 demo
8年前 (2017-06-06)
2618℃
0喜欢
一、环境准备
ElasticSearch建议使用oracle的JDK8(7有漏洞);
安装前需要在系统中检测是否有安装过jdk。
rpm –qa | grep –E ‘^open[jre|jdk]|j[re|dk]’
如果有,可能是...
苏 demo
8年前 (2017-05-16)
3794℃
0喜欢
Nginx 的 HttpUpstreamModule 提供对后端(backend)服务器的简单负载均衡。一个最简单的 upstream 写法如下:
upstream backend {
server backend1.example.com;
server backend2.e...
苏 demo
8年前 (2017-05-11)
1998℃
1喜欢