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

[Nginx]简易配置Nginx虚拟主机

时间:2014-10-30 01:38:37      阅读:175      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   os   使用   sp   文件   div   

-------------------------------------------------------------------------------------------------------

配置虚拟主机:

  1. 绑定域名

    vim /etc/hosts  #添加格式如:192.168.1.11 www.chenwei.ws

  2. 添加虚拟主机   

    cd到根目录, 运行vhost.sh添加虚拟主机, 输入域名即可

  3. 编辑配置文件

    vim /usr/local/nginx/conf/vhost/www.chenwei.ws.conf #配置如下:

--------------------------------@黑眼诗人 <www.chenwei.ws>----------------------------------  

server
  {
    listen 80;
    #listen [::]:80;
    server_name www.chenwei.ws;           #服务器名称
    index index.html index.htm index.php default.html default.ht m default.php;
    root /home/wwwroot/default/www.chenwei.ws;  #主机访问对应目录

    include other.conf;
    #error_page 404 /404.html;
  }

  #跨域调用字体时添加
  location ~* \.(eot|ttf|woff)$ {
    add_header Access-Control-Allow-Origin *;
  }

 

  4. PHP配置open_basedir(将用户访问文件的活动范围限制在指定的区域, open_basedir即为访问目录):

    vim /usr/local/php/etc/php.ini  

   使用命令G 将光标移至行尾, 配置php访问的主机根目录; 如果正确, 则不需要更改:

    [HOST=www.chenwei.ws]

    [PATH=/home/wwwroot/default/www.chenwei.ws]

    open_basedir=/home/wwwroot/default/www.chenwei.ws/:/tmp/

[Nginx]简易配置Nginx虚拟主机

标签:style   blog   io   color   os   使用   sp   文件   div   

原文地址:http://www.cnblogs.com/farwish/p/4042525.html

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