Thứ Sáu, 27 tháng 5, 2011

Kinh nghiệm triển khai dự án VTP

Trong quá trình setup hệ thống, thiếu mất khá nhiều module quan trọng ( mod_header, mod_expires của PHP và APC của PHP ) dẫn đến hệ thống load chậm, ko đảm bảo hiệu năng. Sau đây là cách build chuẩn ( đến thời điểm hiện tại )

build LAMP

Apache2:
./configure --prefix=/usr/local/apache2 --enable-so --enable-auth-digest --enable-rewrite --enable-setenvif --enable-mime --enable-deflate --enable-expires --enable-headers

( có thể cần mod_proxy )


Config disable ETag:  ( bỏ ETag ở các file )
Header unset ETag
FileETag None

Gzip: ( nén file, giảm nhẹ dung lượng )
Accept-Encoding: gzip, deflate
Content-Encoding: gzip

Thông số recommend trên trang apache:

<Location />
# Insert filter
SetOutputFilter DEFLATE

# Netscape 4.x has some problems...
BrowserMatch ^Mozilla/4 gzip-only-text/html

# Netscape 4.06-4.08 have some more problems
BrowserMatch ^Mozilla/4\.0[678] no-gzip

# MSIE masquerades as Netscape, but it is fine
# BrowserMatch \bMSIE !no-gzip !gzip-only-text/html

# NOTE: Due to a bug in mod_setenvif up to Apache 2.0.48
# the above regex won't work. You can use the following
# workaround to get the desired effect:
BrowserMatch \bMSI[E] !no-gzip !gzip-only-text/html

# Don't compress images
SetEnvIfNoCase Request_URI \
\.(?:gif|jpe?g|png)$ no-gzip dont-vary

# Make sure proxies don't deliver the wrong content
Header append Vary User-Agent env=!dont-vary
</Location>





Expires: ( đặt thời gian cache client cho Browser )
ExpiresDefault "access plus 1 month"
Thêm thời gian max-age: xxx



PHP5 (with APC)
./configure --prefix=/usr/local/php --enable-apc --with-apxs2=/usr/local/apache2/bin/apxs --with-mysql=/usr/local/mysql --with-pdo-mysql=/usr/local/mysql --enable-calendar --enable-soap --with-curl --with-gd --with-jpeg-dir=/usr/lib --with-png-dir=/usr/lib --with-zlib-dir=/usr/lib --with-freetype-dir=/usr/include/freetype2/ --with-freetype

--enable-apc-mmap
Nếu lỗi thiếu GD: 
cp /usr/lib64/libpng.a or .so /usr/lib/


Mod APC chưa cài bao giờ, sẽ xem hiệu năng và edit lại bài viết này ....

Không có nhận xét nào:

Đăng nhận xét