Nginx全量配置引數說明

2021-10-09 09:44:09 字數 2037 閱讀 1842

user www-data;

worker_processes 6;

error_log logs/error.log;

error_log logs/error.log notice;

error_log logs/error.log info;

pid /var/run/nginx.pid;

events

server 

#js和css快取時間設定

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

# 日誌格式設定

#$remote_addr與$http_x_forwarded_for用以記錄客戶端的ip位址;

#$remote_user:用來記錄客戶端使用者名稱;

#$time_local: 用來記錄訪問時間與時區;

#$request: 用來記錄請求的url與http協議;

#$status: 用來記錄請求狀態;成功是200,

#$body_bytes_sent :記錄傳送給客戶端檔案主體內容大小;

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

access_log /usr/local/nginx/logs/host.access.log main;

access_log /usr/local/nginx/logs/host.access.404.log log404;

# 對具體路由進行反向**

location /connect-controller

# 動靜分離反向**配置(多路由指向不同的服務端或介面)

location ~ .(jsp|jspx|do)?$

}

user www-data;

worker_processes 6;

error_log logs/error.log;

error_log logs/error.log notice;

error_log logs/error.log info;

pid /var/run/nginx.pid;

events

server 

#js和css快取時間設定

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

# 日誌格式設定

#$remote_addr與$http_x_forwarded_for用以記錄客戶端的ip位址;

#$remote_user:用來記錄客戶端使用者名稱;

#$time_local: 用來記錄訪問時間與時區;

#$request: 用來記錄請求的url與http協議;

#$status: 用來記錄請求狀態;成功是200,

#$body_bytes_sent :記錄傳送給客戶端檔案主體內容大小;

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

access_log /usr/local/nginx/logs/host.access.log main;

access_log /usr/local/nginx/logs/host.access.404.log log404;

# 對具體路由進行反向**

location /connect-controller

# 動靜分離反向**配置(多路由指向不同的服務端或介面)

location ~ .(jsp|jspx|do)?$

}

Nginx配置引數說明

檢測nginx配置檔案是否正確 usr local nginx sbin nginx t c nginx.conf c 配置檔案路徑 g set global directives.version 0.7.4 t 檢測檔案是否正確不執行 v print version.v print nginx v...

Nginx配置引數說明

檢測nginx配置檔案是否正確 usr local nginx sbin nginx t c nginx.conf c 配置檔案路徑 g set global directives.version 0.7.4 t 檢測檔案是否正確不執行 v print version.v print nginx v...

nginx配置(一)引數說明

nginx伺服器日誌相關指令主要有兩條,一條是log format 用來設定日誌格式,另外一條是access log,用來指定日誌檔案的存放路徑 格式和快取大小,一般在nginx的配置檔案中日誌配置 usr local nginx conf nginx.conf nginx的log format有很...