1、最简单的方式,使用库安装,默认1.18版本:
sudo apt install -y nginx
安装完毕,默认自动启动,我这里因为apache占用了80端口,导致启动失败;我在ports.conf中取消了80的监听,然后重启apache,再手动启动nginx即可;
apt安装的nginx可直接systemctl启动、停止、重启,如:
sudo systemctl start nginx
2、安装nginx后,配置文件目录默认在/etc/nginx(这点与apache类似)
然后也存在sites-available和sites-enable两个目录,与apache2的功能也一样,但是因为没有a2ensite命令,所以需要用最原始的命令来建立链接即可:
ln -s /etc/nginx/sites-available/www.example.org.conf /etc/nginx/sites-enabled/
3、实现简单的反向代理
server {
listen 80;
server_name www.123.com;
location / {
proxy_pass http://127.0.0.1:8080;
index index.html index.htm index.jsp;
}
}
文章评论