码迷,mamicode.com
首页 > 其他好文 > 详细

LNMP综合配置

时间:2018-04-16 10:16:56      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:默认虚拟主机   用户认证   防盗链   其他   

Nginx默认虚拟主机
vim /usr/local/nginx/conf/nginx.conf //增加
 include vhost/*.conf
 mkdir /usr/local/nginx/conf/vhost
 cd !$;  vim default.conf //加入如下内容
server
{
    listen 80 default_server;  // 有这个标记的就是默认虚拟主机
    server_name aaa.com;
    index index.html index.htm index.php;
    root /data/wwwroot/default;
}
 mkdir -p /data/wwwroot/default/
 echo “This is a default site.”>/data/wwwroot/default/index.html
 /usr/local/nginx/sbin/nginx -t
 /usr/local/nginx/sbin/nginx -s reload
 curl localhost
 curl -x127.0.0.1:80 123.com

LNMP综合配置

标签:默认虚拟主机   用户认证   防盗链   其他   

原文地址:http://blog.51cto.com/chenshengsheng/2103780

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