nginx虚拟主机配置

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

     }

     Server2 {
     }
}
[root@localhost nginx]# mkdir z.com
[root@localhost nginx]# vi z.com/index.html
[root@localhost nginx]# vi conf/nginx.conf
    server {
        listen 80;  #监听端口
        server_name z.com; #监听域名

        location / {
                root z.com;   #根目录定位
                index index.html;
        }
    }
[root@localhost nginx]# sbin/nginx  -s reload
[root@localhost nginx]# vi conf/nginx.conf
虚拟端口
 server {
        listen 2022;  #监听端口
        server_name z.com; #监听域名

        location / {
                root /var/www/html;   #根目录定位
                index index.html;
        }
    }
    
[root@localhost nginx]# vi /var/www/html/index.html    
<html>
 welcome to z.com 2022
</html>
[root@localhost nginx]# sbin/nginx  -s reload

你可能感兴趣的:(nginx虚拟主机配置)