Blogger Information
Blog 27
fans 0
comment 1
visits 46245
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
nginx虚拟主机配置
学习使我快乐
Original
777 people have browsed it

下面这段是nginx配置文件的详情:

// 全局区worker_processes 1; // 有1个工作的子进程,可以自行修改,但太大无益,因为要争夺CPU,一般设置为 CPU数*核数
 
Event {
// 一般是配置nginx连接的特性
// 如1个word能同时允许多少连接
 worker_connections  1024; // 这是指 一个子进程最大允许连1024个连接
}
 
http {  //这是配置http服务器的主要段
     Server1 { // 这是虚拟主机段
       
            Location {  //定位,把特殊的路径或文件再次定位 ,如image目录单独处理
            }             /// 如.php单独处理
 
     }
 
     Server2 {
     }
}

 

 

例子1: 基于域名的虚拟主机

 

server {
        listen 80;  #监听端口
        server_name a.com; #监听域名
 
        location / {
                root /var/www/a.com;   #根目录定位
                index index.html;
        }
    }

 

例子2: 基于端口的虚拟主机配置

 

server {
        listen 8080;
        server_name a.com;
 
        location / {
                root /var/www/html8080;
                index index.html;
        }
}

例子2: 基于IP的虚拟主机配置

server {
        listen 8080;
        server_name 192.168.1.204;
 
        location / {
                root /var/www/html8080;
                index index.html;
        }
}

免责声明:本文来源于,由网友提供或网络搜集,仅供个人研究、交流学习使用,不涉及商业盈利目的。如有版权问题,请联系本站管理员予以更改或删除。优知网会定期发布程序开发相关趋势文章,包括 PHP、 Linux、 Mysql 等领域,敬请关注!最后大家可以扫描下方的赞赏码支持我,感谢大家!

微信赞赏小.png

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post