nginx配置詳解

2021-08-21 15:14:07 字數 1660 閱讀 5189

hosts 檔案位置 c:\windows\system32\drivers\etc

win10 先複製到桌面,進行修改,然後在複製回去

nginx.conf 位置 /usr/local/nginx/conf

server 

#location @apache

nginx.conf

#定義nginx執行的使用者和使用者組  

user www www;

#nginx程序數,建議設定為等於cpu總核心數。

worker_processes auto;

#全域性錯誤日誌定義型別,[ debug | info | notice | warn | error | crit ]

error_log /data/wwwlogs/error_nginx.log crit;

#程序檔案

pid /var/run/nginx.pid;

#乙個nginx程序開啟的最多檔案描述符數目

worker_rlimit_nofile 65535;

#工作模式與連線數上限

events

#設定http伺服器

#虛擬主機的配置

server

#js和css快取時間設定

location ~ .*.(js|css)?$

#定義本虛擬主機的訪問日誌

access_log ar/loginx/hahaaccess.log access;

#對 "/" 啟用反向**

location /

#所有靜態檔案由nginx直接讀取

} #引入其它的站點位置

include vhost/*.conf;

}

include vhost/*.conf;

conf目錄中沒有 vhost目錄,我們可以新建乙個,

在conf目中: mkdir vhost

*.conf的名字可以自己取

例如:aliyun.conf baidu.con

vim vhost/0.conf

#虛擬主機的配置  

server

#js和css快取時間設定

location ~ .*.(js|css)?$

#定義本虛擬主機的訪問日誌

access_log ar/loginx/hahaaccess.log access;

#對 "/" 啟用反向**

location /

#所有靜態檔案由nginx直接讀取

}

Nginx配置詳解

nginx的主要配置檔案是nginx.conf,位於安裝目錄下的nginx conf資料夾裡,主要的配置引數如下 定義nginx執行的使用者和使用者組 user nobody nobody nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,...

nginx配置詳解

定義nginx執行的使用者和使用者組 user www www nginx程序數,建議設定為等於cpu總核心數。worker processes 8 全域性錯誤日誌定義型別,debug info notice warn error crit error log var log nginx error...

NGINX配置詳解

nginx 配置檔案 user nginx 使用者worker processes 8 工作程序,根據硬體調整,大於等於cpu核數 error log logs nginx error.log crit 錯誤日誌 pid logs nginx.pid pid放置的位置 worker rlimit n...