使用 mod_strip 压缩 Nginx 上的 html 页面

使用 mod_strip 压缩 Nginx 上的 html 页面

我已经在我的 VPS 上安装了 Nginx 1.4.7,并从此站点编译了 mod_striphttps://github.com/evanmiller/mod_strip并尝试在我的 vhost 块上运行它,如手册中所述,如下面的代码所示:Nginx HttpStrip 模块

 location / {
    strip on;
}

令人惊讶的是,它不起作用。我的文件是.php 扩展名,我以为它无论如何都会起作用!!

我检查了模块是否编译正确,发现一切正常。

我运行了以下命令来确认这一点:

$ sudo nginx -v

是的,它就在那里展示!!

知道这里出了什么问题吗?

更新 #1这是我的 vhost 块,其中 strip 命令是:

 location ~ \.php$ {
        fastcgi_index index.php;
        fastcgi_pass unix:/var/run/php5-fpm.sock;
        include fastcgi_params;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        fastcgi_param SCRIPT_NAME $fastcgi_script_name;
        access_log off;
        strip on;
}

相关内容