2024年8月16日大约 1 分钟
- 教程15
- English9
- Markdown8
- MySQL7
- VuePress7
- Java6
- Spring4
- docker3
- Vim3
- 设置2
- JDK2
- nginx2
- C2
- Arthas1
- git1
- Git1
- Apifox1
- IDEA1
- Mac1
- linux1
- shell1
- https1
- Js1
- C语言1
wget https://nginx.org/download/nginx-1.26.1.tar.gz
tar xzf nginx-1.26.1.tar.gz
./configure --prefix=/usr/local/nginx --with-http_ssl_module
make
make install
cd /usr/local/nginx/sbin
# 测试是否安装成功
./nginx -t
#启动
./nginx
# 查进程
ps -ef|grep nginx|grep -v grep
# 重载配置
./nginx -s reload
# 测试网址
http://127.0.0.1/
2024年7月16日小于 1 分钟