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

推荐订阅源

MyScale Blog
MyScale Blog
A
About on SuperTechFans
G
Google Developers Blog
B
Blog RSS Feed
F
Fortinet All Blogs
WordPress大学
WordPress大学
Recent Announcements
Recent Announcements
Hugging Face - Blog
Hugging Face - Blog
Y
Y Combinator Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
人人都是产品经理
人人都是产品经理
博客园 - 叶小钗
T
The Blog of Author Tim Ferriss
Jina AI
Jina AI
IT之家
IT之家
P
Proofpoint News Feed
美团技术团队
量子位
Microsoft Azure Blog
Microsoft Azure Blog
Engineering at Meta
Engineering at Meta
B
Blog
有赞技术团队
有赞技术团队
U
Unit 42

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

未完待续