腾讯云Linux服务器如何安装Nginx?(CentOS 7)
原创
©著作权归作者所有:来自51CTO博客作者服务器上云的原创作品,请联系作者获取转载授权,否则将追究法律责任
说明:
安装 Nginx
执行以下命令,在/etc/yum.repos.d/
下创建nginx.repo
文件。
vi /etc/yum.repos.d/nginx.repo
按i切换至编辑模式,写入以下内容。
[nginx]
name = nginx repo
baseurl = https://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck = 0
enabled = 1
按Esc,输入:wq,保存文件并返回。
执行以下命令,安装 nginx。
执行以下命令,打开default.conf
文件。
vim /etc/nginx/conf.d/default.conf
按i切换至编辑模式,编辑default.conf
文件。
找到server{...}
,并将server
大括号中相应的配置信息替换为如下内容。用于取消对 IPv6 地址的监听,同时配置 Nginx,实现与 PHP 的联动。
server {
listen 80;
root /usr/share/nginx/html;
server_name localhost;
#charset koi8-r;
#access_log /var/log/nginx/log/host.access.log main;
#
location / {
index index.php index.html index.htm;
}
#error_page 404 /404.html;
#redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/html;
}
#pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
location ~ .php$ {
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include
按Esc,输入:wq,保存文件并返回。
执行以下命令启动 Nginx。
执行以下命令,设置 Nginx 为开机自启动。
在本地浏览器中访问以下地址,查看 Nginx 服务是否正常运行。
显示如下,则说明 Nginx 安装配置成功。