【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>>
1.准备软件
cd /usr/local/src/ wget http://www.zlib.net/zlib-1.2.11.tar.gz wget https://ftp.pcre.org/pub/pcre/pcre-8.40.tar.gz wget https://www.openssl.org/source/openssl-1.1.0e.tar.gz wget http://nginx.org/download/nginx-1.10.3.tar.gz
2.解压软件
tar zxvf nginx-1.10.3.tar.gz tar zxvf pcre-8.40.tar.gz tar zxvf zlib-1.2.11.tar.gz tar zxvf openssl-1.1.0e.tar.gz
3.配置安装
cd nginx-1.10.3 yum install gcc gcc-c++ ncurses ncurses-devel bison libgcrypt perl automake autoconf libtool make
groupadd www useradd -r -g www www
重要配置(如果安装下载路径不和上文一致,可自己变更):./configure --prefix=/usr/local/nginx --user=www --group=www --with-http_ssl_module --with-http_v2_module --with-http_gzip_static_module --with-ipv6 --with-poll_module --with-select_module --with-pcre=/usr/local/src/pcre-8.40 --with-zlib=/usr/local/src/zlib-1.2.11 --with-openssl=/usr/local/src/openssl-1.1.0e
make
make install
4.启动查看
/usr/local/nginx/sbin/nginx
ps axu | grep nginx
或者访问公网IP
来源:oschina
链接:https://my.oschina.net/songms/blog/3141659