Home | 簡體中文 | 繁體中文 | 雜文 | 打賞(Donations) | Github | OSChina 博客 | 雲社區 | 雲棲社區 | Facebook | Linkedin | 知乎專欄 | 視頻教程 | About

4.2. /etc/lighttpd/lighttpd.conf

4.2.1. max-worker / max-fds

max-worker 我一般設置為與處理器數目相同。

max-fds 最大連接數

server.max-worker = 24
server.max-fds = 4096
			

4.2.2. accesslog.filename

通過cronolog切割日誌

#### accesslog module
#accesslog.filename          = "/www/logs/lighttpd.access.log"
accesslog.filename = "| /usr/local/sbin/cronolog /www/logs/%Y/%m/%d/access.log"
			

4.2.3. ETags

disable etags

static-file.exclude-extensions = ( ".php", ".pl", ".fcgi" )
static-file.etags = "disable"
			

4.2.4. server.tag

隱藏伺服器信息

server.tag = "Apache"
			

測試結果Server: Apache

curl -I http://172.16.0.7/
HTTP/1.1 200 OK
Content-Type: text/html
Content-Length: 4692
Date: Fri, 04 Nov 2011 12:33:19 GMT
Server: Apache