当前位置:首页 > 服务器技术 > nginx

nginx虚拟主机

一、编译安装完成nginx在这就不说了,前文有具体的安装过程;


二、排除不需要的内容;

    [root@nginx ~]# egrep -v "#|^$" /etc/nginx/nginx.conf >/tmp/nginx.conf


三、修改内容,拷贝到cp /tmp/nginx.conf /etc/nginx/nginx.conf

######################################################################

[root@nginx data]# cat /etc/nginx/nginx.conf

user nginx nginx;

worker_processes  6;

events {

    use epoll;

    worker_connections  1024;

}

http {

    include       mime.types;

    default_type  application/octet-stream;

    sendfile        on;

    keepalive_timeout  65;

    server {

        listen       80;

        server_name  www.etangbo.com;

        access_log  /app/log/www/host.access.log;

        location / {

            root   /data/www;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

    }

###

     server {

        listen       80;

        server_name  bbs.etangbo.com;

        access_log  /app/log/bbs/host.access.log;

        location / {

            root   /data/bbs;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        } 

   }

###

    server {

        listen       80;

        server_name  blog.etangbo.com;

        access_log  /app/log/blog/host.access.log;

        location / {

            root   /data/blog;

            index  index.html index.htm;

        }

        error_page   500 502 503 504  /50x.html;

        location = /50x.html {

            root   html;

        }

   }

}

[root@nginx data]# 

######################################################################


四、创建网页文件目录和授权

   mkdir /data/www -p

   chown -R nginx.nginx /data/www/

   mkdir /app/log -p


[root@nginx ~]# /usr/sbin/nginx -s reload  # 加载配置文件


五、本地hosts做解析:C:WindowsSystem32driversetchosts

# localhost name resolution is handled within DNS itself.

#127.0.0.1       localhost

#::1             localhost

192.168.11.32  www.etangbo.com

192.168.11.32  bbs.etangbo.com 

192.168.11.32  blog.etangbo.com 


本文出自 “山猫” 博客,谢绝转载!

原文:http://cqtangbo.blog.51cto.com/2978612/1754181


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!