安裝配置nginx加載concat模塊

centos7.2 x86_64javascript

阿里開源的concat模塊,用於減小網站訪問中js和css的請求,以減輕服務器壓力;該技術即將css、js等靜態資源合併爲一個或幾個資源,配合緩存可大大節省網絡傳輸時間,加快網頁加載速度。css

1,安裝concat模塊需編譯安裝nginx:
yum -y install gcc gcc-c++ autoconf automake zlib zlib-devel pcre pcre-devel git
mkdir -p /var/web/
useradd web
mkdir -p /var/web/
chown web.web /var/web/
cd /var/web/
git clone https://github.com/alibaba/nginx-http-concat.git
wget http://nginx.org/download/nginx-1.12.1.tar.gz
tar zxvf nginx-1.12.1.tar.gz
cd nginx-1.12.1
./configure --prefix=/var/web/nginx --sbin-path=/usr/sbin/nginx --user=web --group=web --with-compat --with-file-aio --with-threads --with-http_addition_module --with-http_auth_request_module --with-http_dav_module --with-http_flv_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_mp4_module --with-http_random_index_module --with-http_realip_module --with-http_secure_link_module --with-http_slice_module --with-http_ssl_module --with-http_stub_status_module --with-http_sub_module --with-http_v2_module --with-stream --with-stream_realip_module --with-stream_ssl_module --with-stream_ssl_preread_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector --param=ssp-buffer-size=4 -m64 -mtune=generic -fPIC' --with-ld-opt='-Wl,-z,relro -Wl,-z,now -pie' --add-module=/var/web/nginx-http-concat
make
make installhtml

2,concat模塊使用方法:java

#該段代碼意味着網站根目錄下/static/目錄裏的css和js才能夠合併
    location /static/ {
        concat on;
        concat_max_files 20;
        concat_unique off;
        concat_types text/css text/html application/javascript;
    }nginx

https://localhost/static/??/pc/style/loading.min.css,pc/js/aboutus.min.js,global/js/stats.js
該連接能看到對應js和css的內容即爲配置concat成功可用
 c++

相關文章
相關標籤/搜索