如何在Debian 11上安装Nginx?Nginx是一款轻量级的 HTTP 服务器,时常用于服务端的反向代理和负载均衡。Nginx是一个免费的开源网络服务器,提供 HTTP、反向代理、缓存和负载平衡功能。它是 Apache 的绝佳替代品,并且易于设置。今天,小编教大家如何在debian11 bullseye上安装nginx web服务器!
在 Debian 11 Bullseye 上安装 Nginx:
步骤 1. 在我们安装任何软件之前,通过apt在终端中运行以下命令来确保您的系统是最新的很重要:
sudo apt update
sudo apt upgrade
sudo apt install curl gnupg2 ca-certificates lsb-release
步骤 2. 在 Debian 11 上安装 Nginx。
现在我们运行以下命令将 Nginx 安装到您的 Debian 系统:
sudo apt install nginx
输出:
root@idroot.us:~# sudo apt install nginx
Reading package lists… Done
Building dependency tree… Done
Reading state information… Done
The following additional packages will be installed:
geoip-database libgeoip1 libnginx-mod-http-geoip
libnginx-mod-http-image-filter
libnginx-mod-http-xslt-filter libnginx-mod-mail
libnginx-mod-stream libnginx-mod-stream-geoip
nginx-common nginx-core
Suggested packages:
geoip-bin fcgiwrap nginx-doc
安装完成后,启动 Nginx 并将其添加到系统启动时使用以下命令自动启动:
sudo systemctl start nginx
sudo systemctl enable nginx
验证安装:
nginx -v
步骤 3. 配置防火墙。
现在添加防火墙规则以允许连接以及 HTTP(端口 80)和 HTTPS(端口 443)流量:
sudoufw allow ‘Nginx HTTP’
步骤 4. 访问 Nginx Web 服务器。
成功安装后,您应该能够通过 Web 浏览器查看测试 Nginx 网页:
http://your-server-ip-address
感谢您使用本教程在 Debian 11 Bullseye 上安装最新版本的 Nginx Web服务器。如需其他帮助或有用信息,我们建议您查看Nginx 官方网站。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)