apt安装nginx
Contents
添加安装源
nano /etc/apt/sources.list加入两行
deb http://nginx.org/packages/debian/ bullseye nginx
deb-src http://nginx.org/packages/debian/ bullseye nginx导入key
wget http://nginx.org/keys/nginx_signing.key
apt-key add nginx_signing.key更新apt包
apt update -y安装nginx
apt install nginx重新安装nginx
sudo apt remove nginx
sudo apt purge nginx
rm -rf /etc/nginx
sudo apt autoremove
apt -o DPkg::options::=--force-confmiss --reinstall install nginx