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

推荐订阅源

J
Java Code Geeks
Stack Overflow Blog
Stack Overflow Blog
P
Proofpoint News Feed
L
LangChain Blog
C
Check Point Blog
F
Fortinet All Blogs
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
Blog — PlanetScale
Blog — PlanetScale
腾讯CDC
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Jina AI
Jina AI
Recent Announcements
Recent Announcements
雷峰网
雷峰网
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
N
Netflix TechBlog - Medium
博客园 - 【当耐特】
Hugging Face - Blog
Hugging Face - Blog
Microsoft Azure Blog
Microsoft Azure Blog
U
Unit 42
The Cloudflare Blog
月光博客
月光博客
有赞技术团队
有赞技术团队
G
Google Developers Blog
Vercel News
Vercel News

Nginx on 轻风云

宝塔nginx环境下php7.2无mcrypt扩展
记一次centos7在断网环境下编译安装nginx1.6+php7.2
2021-03-27 · via Nginx 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

未完待续