2 Nginx學習筆記 配置檔案

2021-10-01 10:06:00 字數 1940 閱讀 9221

核心配置檔案nginx.conf由三部分組成

###==

====

====

====

====

====

==基本配置

#user nobody; #配置worker程序執行使用者

worker_processes 1

; #配置工作程序數目,根據硬體調整,通常等於cpu數量或者2倍於cpu數量

#error_log logs/error.log; #配置全域性錯誤日誌及型別[debug|info|notice|warn|error|crit]預設是error

#error_log logs/error.log notice;

#error_log logs/error.log info;

#pid logs/nginx.pid; #配置程序pid檔案

###==

====

====

====

====

====

==基本配置

###==

====

====

====

====

====

==events配置

#配置工作模式和連線資料

events

###==

====

====

====

====

====

==events配置

###==

====

====

====

====

====

==http配置

#配置http伺服器,利用他的反向**功能提供負載均衡支援

/404.html; #配置404頁面

# redirect server error pages to the static page /

50x.html

#error_page 500

502503

504/

50x.html; #配置50x錯誤頁面

# =等號,精確匹配

location =

/50x.html

# proxy the php scripts to apache listening on 127.0

.0.1:80

##location ~ \.php$

# pass the php scripts to fastcgi server listening on 127.0

.0.1

:9000

##location ~ \.php$

#禁止訪問.htaccess檔案

# deny access to .htaccess files,

if apache's document root

# concurs with nginx's one

##location ~

/\.ht

} # another virtual host using mix of ip-

, name-

, and port-based configuration

##server

#}# https server #安全的網路傳輸,埠預設443

##server

#}###==

====

====

====

====

====

==http 多server配置

###==

====

====

====

====

====

==http配置

}

2 Nginx 基礎配置檔案說明

root master nginx tree client body temp 客戶端內容臨時檔案 conf fastcgi.conf 動態配置檔案 fastcgi.conf.default fastcgi params 動態引數 fastcgi params.default koi utf koi...

2 Nginx 配置詳解

nginx配置詳解 nginx配置檔案主要分成四部分 main 全域性設定 server 主機設定 upstream 上游伺服器設定,主要為反向 負載均衡相關配置 和location url匹配特定位置後的設定 每部分包含若干個指令。他們之間的關係式 server繼承main,location繼承s...

nginx 學習筆記 2 nginx新手入門

這篇手冊簡單介紹了nginx,並提供了一些可以操作的簡單的工作。前提是nginx已經被安裝到你的伺服器上。如果沒有安裝,請閱讀上篇 nginx 學習筆記 1 nginx安裝。這篇手冊主要內容 1.如何啟動和停止nginx,如何載入nginx配置 2.配置檔案的結構 3.如何安裝nginx來做靜態內容...