linux下nginx的配置段
Nginx配置段
Event {
// 一般是配置nginx進程與連接的特性
// 如幾個同時工作
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 192.168.1.204;
location / {
root /var/www/html8080;
index index.html;
}
}