标签:机器 roo 保存 chkconfig linu res The ipv6 add
使用 yum 安装 Nginx:
yum install nginx -y
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
此时,可访问实验机器外网 HTTP 服务(http://IPAddress)来确认是否已经安装成功。
chkconfig nginx on
标签:机器 roo 保存 chkconfig linu res The ipv6 add
原文地址:https://www.cnblogs.com/mazey/p/8983144.html