Skip to content

源文件编译安装

命令

sh
# 源文件目录
$ cd nginx-1.18.0

# 配置构建
$ ./configure --with-http_ssl_module --with-http_v2_module

# 编译安装
$ make && make install

# 卸载:
$ make uninstall nginx

缺少依赖安装

md
安装 PCRE 依赖:
sudo apt-get install libpcre3 libpcre3-dev

安装 OpenSSL 依赖:
sudo apt-get install openssl libssl-dev

安装 zlib 依赖:
sudo apt-get install zlib1g zlib1g-dev

参考链接

https://nginx.org/en/docs/configure.html