在本教程中,我们将向您展示如何在 Ubuntu 20.04 LTS 上使用 Google PageSpeed 模块安装 Nginx。 对于那些不知道的人,Google PageSpeed 是一个开源软件 Apache 由 Google 创建的模块,通过重写网页以减少延迟和带宽来帮助使网络更快。 网站页面的加载速度会影响用户体验和网站在搜索引擎结果中的位置。 为了分析和加速内容加载,有一个 Google PageSpeed 模块。
本文假设您至少具有 Linux 的基本知识,知道如何使用 shell,并且最重要的是,您在自己的 VPS 上托管您的站点。 安装非常简单,假设您在 root 帐户中运行,否则您可能需要添加 ‘sudo
‘ 到获得 root 权限的命令。 我将向您展示在 Ubuntu 20.04 (Focal Fossa) 上使用 Google PageSpeed 模块逐步安装 Nginx。 您可以按照针对 Ubuntu 18.04、16.04 和任何其他基于 Debian 的发行版(如 Linux Mint)的相同说明进行操作。
在 Ubuntu 20.04 LTS Focal Fossa 上安装带有 Google PageSpeed 模块的 Nginx
步骤 1. 首先,通过运行以下命令确保所有系统包都是最新的 apt
终端中的命令。
sudo apt update sudo apt upgrade sudo apt install curl libssl-dev
步骤 2. 在 Ubuntu 20.04 上安装 Nginx。
您可以使用以下命令安装 Nginx:
sudo apt install nginx
安装 Nginx 后,您可以验证版本:
nginx -V
输出:
nginx version: nginx/1.18.0 (Ubuntu) built with OpenSSL 1.1.1f 20 May 2021 TLS SNI support enabled configure arguments: ...
步骤 3. 安装 Google PageSpeed 模块。
现在我们运行以下命令来安装所有需要的依赖项和 PageSpeed 模块:
bash <(curl -f -L -sS https://ngxpagespeed.com/install) --nginx-version 1.18.0
在安装过程中,所有问题都应该得到肯定的回答。 在下一个请求之后,您可以输入需要包含在程序集中的其他模块:
About to build nginx. Do you have any additional ./configure arguments you would like to set? For example, if you would like to build nginx with https support give --with-http_ssl_module If you don't have any, just press enter. >
默认参数集如下所示:
--prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --modules-path=/usr/lib/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/lib/nginx/body --http-fastcgi-temp-path=/var/lib/nginx/fastcgi --http-proxy-temp-path=/var/lib/nginx/proxy --http-scgi-temp-path=/var/lib/nginx/scgi --http-uwsgi-temp-path=/var/lib/nginx/uwsgi --with-compat --with-stream=dynamic --with-stream_ssl_module --with-mail=dynamic --with-mail_ssl_module --with-http_ssl_module --with-http_v2_module
安装完成后,创建以下符号链接:
ln -s /usr/lib/nginx/modules /etc/nginx/modules
要验证安装:
nginx -V
输出:
... configure arguments: --add-module=/root/incubator-pagespeed-ngx-latest-stable ...
第 4 步。设置 Google PageSpeed 模块。
现在我们编辑 Nginx 主配置文件并定义启用 Google PageSpeed 模块路径:
nano /etc/nginx/sites-available/default
添加以下文件:
server { … pagespeed on; pagespeed FileCachePath "/var/cache/ngx_pagespeed/"; pagespeed RewriteLevel OptimizeForBandwidth; location ~ ".pagespeed.([a-z].)?[a-z]{2}.[^.]{10}.[^.]+" { add_header "" ""; } location ~ "^/pagespeed_static/" { } location ~ "^/ngx_pagespeed_beacon$" { } … }
要应用更改重新加载 systemd
守护进程:
nginx -t
接下来,我们在 webroot 目录下创建一个新的 index.html 文件:
echo "Hallo, Linux!" > /var/www/html/index.html
最后,重新启动 Nginx 服务以应用更改:
sudo systemctl restart nginx
步骤 5. 测试 Google PageSpeed 模块。
确保 Google PageSpeed 模块正常工作的最简单方法是使用 curl
:
curl -I -p https://your-server-IP or your-domain-name
输出:
HTTP/1.1 200 OK Server: nginx/1.18.0 Content-Type: text/html Connection: keep-alive Date: Wed, 21 May 2021 16:36:08 GMT X-Page-Speed: 1.13.35.2-0 Cache-Control: max-age=0, no-cache
恭喜! 您已使用 Google PageSpeed 成功安装 Nginx。 感谢您使用本教程在 Ubuntu 20.04 LTS Focal Fossa 系统上使用 Google PageSpeed 模块安装 Nginx。 如需更多帮助或有用信息,我们建议您查看 官方 Google PageSpeed 网站.