搭建 Nginx 静态服务器
安装 Nginx
使用 yum 安装 Nginx:
yum install nginx -y
- 修改 /etc/nginx/conf.d/default.conf,去除对 IPv6 地址的监听。
- 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
网友评论