知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

nginx的小总结(三)

发布时间:2014-09-05 15:08:55作者:知识屋

nginx的小总结(三)
 
nginx的小总结(二)
http://www.zhishiwu.com/os/201303/192107.html
nginx小总结,虚拟主机的配置
  www.zhishiwu.com  
user nginx nginx;
worker_processes  1;
 
 
events {
    worker_connections  1024;
    use  epoll;
}
 
 
http {
    include       mime.types;
    default_type  application/octet-stream;
 
    sendfile        on;
    keepalive_timeout  65;
 
    server {
 
        listen       80;
        server_name  www.example.com *.example.com;
 
        location / {
            root   html;
            index  index.html index.htm;
                }
        }
        server {
 
                listen       80;
                server_name  qq.example.com;
 
                location / {
 
                root   html; 
                index  index.html index.htm; 
                } 
        } 
        server { 
 
                listen       80; 
                server_name  qq.example.com; 
 
                location / { 
                root   example; 
                index  index.html index.htm; 
            } 
        } 
 
  
配置如上,还是比较容易理解的,只是多添加了一个server的区域,于是就有两个了,注意,这里本人使用的是相对路径!
(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜