nginx常用配置

2022-08-02 10:48:10 字數 1881 閱讀 7161

在 nginx.conf 的注釋符號為: #

預設的 nginx 配置檔案 nginx.conf 內容如下:

nginx檔案結構

...              #全域性塊

events

http #http塊

location [pattern]

}server

... #http全域性塊

}

下面給大家上乙個配置檔案,作為理解

########### 每個指令必須有分號結束。#################

#user administrator administrators; #配置使用者或者組,預設為nobody nobody。

#worker_processes

2; #允許生成的程序數,預設為1

#pid /nginx/pid/nginx.pid; #指定nginx程序執行檔案存放位址

error_log log/error.log debug; #制定日誌路徑,級別。這個設定可以放入全域性塊,http塊,server塊,級別以此為:debug|info|notice|warn|error|crit|alert|emerg

www.baidu.com; #錯誤頁

server }}

配置示例

上面是nginx的基本配置,需要注意的有以下幾點:

1、幾個常見配置項:

3、每個指令必須有分號結束。

參考:nginx 反向**與負載均衡詳解:

nginx常用配置

官檔 nginx的負載均衡主要依賴這個模組 ngx http upstream module 1 安裝好nginx 192.168.1.111 2 修改egrep v nginx.conf.default nginx.conf 對其進行修改 訪問server name的時候,會找listen埠,所有...

Nginx常用配置

允許跨域 add header access control allow origin 配置 的使用者訪問認證 生成密碼檔案 htpasswd b c sitepasswd pigt password 配置訪問授權 auth basic input you user name and passwor...

nginx常用配置

其主要分為幾個模組 全域性快從開始到events塊之間的一部分內容,其作用域為全域性作用域 events塊 主要負責nginx伺服器與使用者的網路連線 常用設定 是否開啟多work process下的網路連線進行序列化 師傅允許接收多個網路連線 選取哪種驅動模型連線請求 process 最大連線數 ...