Nginx簡單的優化

來源:互聯網
上載者:User
關鍵字 nginx

1. 減小nginx編譯後的檔案大小 (Reduce file size of nginx)

預設的nginx編譯選項裡居然是用debug模式(-g)的(debug模式會插入很多跟蹤和ASSERT之類),編譯以後一個nginx有好幾兆。 去掉nginx的debug模式編譯,編譯以後只有幾百K
在 auto/cc/gcc,最後幾行有:

# debug
CFLAGS=」$CFLAGS -g」

注釋掉或刪掉這幾行,重新編譯即可。

2. 修改Nginx的header偽裝伺服器

1) 修改nginx.h

#vi nginx-0.7.30/src/core/nginx.h
#define NGINX_VERSION "1.8"
#define NGINX_VER "LTWS/" NGINX_VERSION
#define NGINX_VAR "NGINX"
#define NGX_OLDPID_EXT ".oldbin"

2) 修改nginx_HTTP_header_filter_module

#vi nginx-0.7.30/src/HTTP/ngx_HTTP_header_filter_module.c

將如下

static char ngx_HTTP_server_string[] = "Server: nginx" CRLF;

修改為

static char ngx_HTTP_server_string[] = "Server: LTWS" CRLF;

a) 修改nginx_HTTP_header_filter_module

#vi nginx-0.7.30/src/HTTP/ngx_HTTP_special_response.c

將如下:

static u_char ngx_HTTP_error_full_tail[] =
"<hr><center>" NGINX_VER "</center>" CRLF
"</body>" CRLF
"</html>" CRLF
;

static u_char ngx_HTTP_error_tail[] =
"<hr><center>nginx</center>" CRLF
"</body>" CRLF
"</html>" CRLF
;

修改為:

static u_char ngx_HTTP_error_full_tail[] =
"<center> "NGINX_VER" </center>" CRLF
"<hr><center>HTTP://www.linuxtone.org</center>" CRLF
"</body>" CRLF
"</html>" CRLF
;

static u_char ngx_HTTP_error_tail[] =
"<hr><center>LTWS</center>" CRLF
"</body>" CRLF
"</html>" CRLF
;

修改後重新編譯一下環境,
404錯誤的時候顯示效果圖(如果沒有指定錯誤頁的話):

利用curl命令查看伺服器header

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.