惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

J
Java Code Geeks
Google DeepMind News
Google DeepMind News
H
Hackread – Cybersecurity News, Data Breaches, AI and More
T
The Blog of Author Tim Ferriss
A
About on SuperTechFans
N
Netflix TechBlog - Medium
阮一峰的网络日志
阮一峰的网络日志
H
Help Net Security
I
InfoQ
月光博客
月光博客
量子位
Blog — PlanetScale
Blog — PlanetScale
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
云风的 BLOG
云风的 BLOG
雷峰网
雷峰网
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Jina AI
Jina AI
Engineering at Meta
Engineering at Meta
G
Google Developers Blog
D
DataBreaches.Net
宝玉的分享
宝玉的分享
V
Visual Studio Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
人人都是产品经理
人人都是产品经理

Centos7 on 轻风云

Centos7一键安装pptp脚本
记一次centos7在断网环境下编译安装nginx1.6+php7.2
2021-03-27 · via Centos7 on 轻风云

记一次centos7在断网环境下编译安装nginx1.6+php7.2

下载我们用到的依赖包文件 nginx1.6&php7.2.zip
unzip解压下载的包

1
unzip nginx+php7.2.zip

安装依赖

1
rpm -Uvh *.rpm

tar解压nginx

1
tar -zxvf nginx-1.6.0.tar.gz -C /usr/local/ngnix

编译nginx

1
2
3
4
cd /usr/local/nginx
./configure
mske && make install
whereis nginx

启动nginx

1
cd /usr/local/nginx/sbin/nginx

测试nginx
1.png

重启nginx进程

1
2
/usr/local/nginx/sbin/nginx -s reload
ps -ef | grep nginx

未完待续