Tag: nginx
All the articles with the tag "nginx".
[nginx] 阻擋/僅允許特定 IP / 網段
Published: at 04:17 PM (1 min read)如何設定 nginx 阻擋特定 ip / 網段存取
[nginx] 如何讓 $remote_addr 辨認出正確的 client 端 ip 而不是 cdn(cloudflare) ip
Published: at 04:47 PM (2 min read)$remote_addr 是 nginx 的變數,用來取得 client 端的 ip,但當網站前面架設了 cdn(cloudflare)時,$remote_addr 取得的是 cdn 的 ip,而不是 client 端的 ip。
如何使用 shell script 篩選 nginx log 的時間區段
Published: at 04:02 AM (1 min read)如何使用 shell script 篩選 nginx log 的時間區段
[nginx] proxy cache 設定
Published: at 09:49 AM (2 min read)有做過網頁速度優化的工程師,應該對於 cache 相當熟悉,適當的增加 cache 可以大幅地減少 server 的負擔。
[nginx] 錯誤,client intended to send too large body
Published: at 01:27 PM (1 min read)之前因為把機器上原本的 apache 的 web server 換成 nginx,遇到了這個錯誤 `client intended to send too large body`
[nginx] 移除不必要的預設 header,"Server" 版本
Published: at 08:28 AM (1 min read)預設安裝好 nginx 會有 web server 版本資訊的 header,為了資訊安全上面的考量,建議將 /etc/nginx/nginx.conf 的 server_tokens off; 打開,這樣就不會在 header 顯示 nginx 的版本資訊。