云解析服务 DNS-通过Nginx配置URL转发:步骤1:在云服务器上安装Nginx
步骤1:在云服务器上安装Nginx
本节操作使用工具为Nginx,且确认http_rewrite_module是开启的,一般默认为开启状态。
以CentOS 7系列为例,安装Nginx操作步骤如下:
- 安装依赖包。
yum install -y pcre pcre-devel
yum install -y zlib zlib-devel
yum install -y openssl openssl-devel
- 下载并解压安装包。
wget http://nginx.org/download/nginx-1.20.1.tar.gz
tar -zxvf nginx-1.20.1.tar.gz
- 安装Nginx。
更换命令中“/usr/local/nginx”为实际希望安装路径。
cd nginx-1.20.1
./configure --prefix=/usr/local/nginx
make && make install
- 安装完后验证是否安装成功。
./nginx -t
出现如下内容为安装成功 。
nginx: the configuration file /usr/local/nginx//conf/nginx.conf syntax is ok nginx: configuration file /usr/local/nginx//conf/nginx.conf test is successful