1.安装gcc环境
yum install gcc-c++ -y
2.安装pcre库
yum install -y pcre pcre-devel
3.安装zlib库
yum install -y zlib zlib-devel
4.安装openssl库
yum install -y openssl openssl-devel
5.上传包并解压
mkdir –p /usr/local/nginx
tar -zxvf nginx-1.8.0.tar.gz
cd nginx-1.8.0
6.设置参数
./configure
--prefix=/usr/local/nginx \
--pid-path=/var/run/nginx/nginx.pid \
--lock-path=/var/lock/nginx.lock \
--error-log-path=/var/log/nginx/error.log \
--http-log-path=/var/log/nginx/access.log \
--with-http_gzip_static_module \
--http-client-body-temp-path=/var/temp/nginx/client \
--http-proxy-temp-path=/var/temp/nginx/proxy \
--http-fastcgi-temp-path=/var/temp/nginx/fastcgi \
--http-uwsgi-temp-path=/var/temp/nginx/uwsgi \
--http-scgi-temp-path=/var/temp/nginx/scgi
7.编译安装
make && make install
8.启动nginx
cd /usr/local/nginx/sbin/
./nginx
注意:
执行./nginx启动nginx,这里可以-c指定加载的nginx配置文件,如下:
./nginx -c /usr/local/nginx/conf/nginx.conf
如果不指定-c,nginx在启动时默认加载conf/nginx.conf文件,此文件的地址也可以在编译安装nginx时指定./configure的参数(--conf-path= 指向配置文件(nginx.conf))
9.重新加载配置文件并重启
cd /usr/local/nginx/sbin
./nginx -s reload
./nginx -s quit
./nginx
10.配置nginx代理ftp服务器
修改用户为ftp服务器用户
user ftpuser;
修改路径:
修改资源路径为ftp用户的根路径
location / {
root /home/ftpuser;
index timg.jpg;
}
这时就可以通过http协议访问ftp服务器资源了
http://192.168.172.135/