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

Linux-LNMP-Nginx的配置

时间:2018-02-28 19:50:12      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:Linux-LNMP-Nginx

Nginx默认虚拟主机配置

Nginx源码包安装的配置文件/usr/local/nginx/conf/nginx.conf

注释掉server{},增加http{include vhost/*.conf;}

mkdir /usr/local/nginx/conf/vhost

vim /usr/local/nginx/conf/vhost/apeng.com.conf

server
{
    listen 80 default_server;
    server_name apeng.com;
    index index.html index.htm index.php;
    root /data/wwwroot/default;
}

mkdir -p /data/wwwroot/default

vim /data/wwwroot/default/index.html

/usr/local/nginx/sbin/nginx -t

/usr/local/nginx/sbin/nginx -s reload

curl localhost



Linux-LNMP-Nginx的配置

标签:Linux-LNMP-Nginx

原文地址:http://blog.51cto.com/13480443/2074045

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