nginx配置和自己理解

2021-07-12 07:27:46 字數 385 閱讀 9850

nginx的上傳檔案設定是沒寫的     預設值為1mb

若檔案上傳過大則會報 413   code

設定nginx檔案上傳大小則去編輯nginx.conf檔案

client_max_body_size 5m;
加入這句即可

nginx的重寫入

1.try_files

try_files $uri $uri/ /index.php?$query_string;

當訪問url不存在時就將url變成get引數加入index.php內

2.rewrite

location / 

}

當訪問url不存在時就將url變成get引數加入index.php內

關於nginx的配置理解

主要配置檔案etc nginx nginx.conf include語句表示要包含的配置檔案,相當於js用import匯入檔案的作用 語句分號結尾,key和value使用空格分開 後面放正則 大括號表示指令塊 後面表示注釋 詳細說明 user nginx 設定執行nginx的使用者 worker p...

nginx 安裝和配置

nginx安裝 step1 在modules目錄下建立nginx目錄 root master mkdir opt modules nginx root master wget step3 解壓到指定目錄 root master tar zxf tengine 2.0.2.tar.gz opt mod...

自己配置Nginx簽發免費的ssl簽名

注意 一般生成的目錄,應該放在nginx conf ssl目錄 1.建立伺服器證書金鑰檔案 server.key openssl genrsa des3 out server.key 1024輸入密碼,確認密碼,自己隨便定義,但是要記住,後面會用到。2.建立伺服器證書的申請檔案 server.csr...