# 安装nginx
yum install nginx
# 安装后执行以下命令 启动服务
service nginx start
# 本地测试nginx服务
[if !supportLists]4、[endif][root@lnboxue ~]# curl -i localhost
看到下图这样表示成功
接下来在/etc/nginx目录下创建vhost 文件夹,在 vhost 目录下创建 www.aaa.com.conf 文件,内容如下:
server {
listen 80 ; #监听的端口
server_name www.aaa.com; #域名
index index.htm index.html index.php; #默认打开文件
root /home/douban/web; #网站目录
location / {
}
error_page 404 /404.html;
location = /40x.html {
}
error_page 500 502 503 504 /50x.html;
location = /50x.html {
}
}
:wq 保存退出后回到上级目录修改 /etc/nginx/nginx.conf 文件如下图所示:
注意:记得加上一段代码 include ...,以后再配置直接在vhost目录创建XX.conf文件即可
最后重启 nginx 服务就大功告成了
service nginx restart
网友评论