如何使用nginx卸载在ubuntu中安装的google pagespeed?

时间:2014-05-19 06:57:50

标签: nginx pagespeed

我有两个问题

如何清除/卸载我在ubuntu上编译的Nginx?

我确实在运行nginx的ubuntu网络服务器上安装了google pagespeed,根据以下教程https://github.com/pagespeed/ngx_pagespeedhttps://developers.google.com/speed/pagespeed/module/configuration

如何清除此软件包而不影响我的服务器?

非常感谢您的协助

2 个答案:

答案 0 :(得分:0)

要卸载pagespeed,请构建新版本的nginx from source但没有--add-module=$HOME/ngx_pagespeed-1.8.31.2-beta参数./configure告诉nginx构建过程包含pagespeed。

或者,您可以从配置中删除所有pagespeed指令,这与卸载它的效果几乎相同。

答案 1 :(得分:0)

如果您不想使用它,则无需卸载ngx_pagespeed,只需添加到host.conf文件中

pagespeed off;

如果出于某些其他原因要删除它,请输入:

nginx -V

你会得到这样的结果:

configure arguments: --add-module=/root/custom-nginx/nginx-1.10.2/src/http/modules/ngx_pagespeed --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib64/nginx/modules --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=nginx --group=nginx --with-file-aio --with-threads --with-ipv6 --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-mail --with-mail_ssl_module --with-stream --with-stream_ssl_module --with-cc-opt='-O2 -g -pipe -Wall -Wp,-D_FORTIFY_SOURCE=2 -fexceptions -fstack-protector-strong --param=ssp-buffer-size=4 -grecord-gcc-switches -m64 -mtune=generic'

删除--add-module = / root / custom-nginx / nginx-1.10.2 / src / http / modules / ngx_pagespeed

再次编译