nginx 的調整

花了一些時間翻 nginx 的文件,有一些地方可以 tune...

FreeBSD 上可以利用 httpready 把一些事情丟到 kernel module 處理:

listen 80 default accept_filter=httpready;

httpready 參數必須設定在有 defaultlisten 之上,而且必須在 default 之後,不然會回報設定錯誤。

server_tokens 也應該關掉,除了 security 理由外,另外一個很簡單的理由是,可以少送 7bytes...:

server_tokens off;

Leave a Reply

Your email address will not be published. Required fields are marked *