码迷,mamicode.com
首页 > 系统相关 > 详细

Linux yum 安装 Nginx

时间:2018-05-02 23:51:41      阅读:224      评论:0      收藏:0      [点我收藏+]

标签:机器   roo   保存   chkconfig   linu   res   The   ipv6   add   

搭建 Nginx 静态服务器

安装 Nginx

使用 yum 安装 Nginx:

yum install nginx -y
  1. 修改 /etc/nginx/conf.d/default.conf,去除对 IPv6 地址的监听。
  2. i进入修改 esc退出编辑 :x保存。
vim /etc/nginx/conf.d/default.conf

配置示例

server {
    listen       80 default_server;
    # listen       [::]:80 default_server;
    server_name  _;
    root         /usr/share/nginx/html;

    # Load configuration files for the default server block.
    include /etc/nginx/default.d/*.conf;

    location / {
    }

    error_page 404 /404.html;
        location = /40x.html {
    }

    error_page 500 502 503 504 /50x.html;
        location = /50x.html {
    }

}

修改完成后,启动 Nginx:

nginx

此时,可访问实验机器外网 HTTP 服务(http://IPAddress)来确认是否已经安装成功

将 Nginx 设置为开机自动启动:

chkconfig nginx on

Linux yum 安装 Nginx

标签:机器   roo   保存   chkconfig   linu   res   The   ipv6   add   

原文地址:https://www.cnblogs.com/mazey/p/8983144.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!