欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 国际 > Nginx系列(一)---Ubuntu快速使用

Nginx系列(一)---Ubuntu快速使用

2025/1/26 15:04:57 来源:https://blog.csdn.net/ckq707718837/article/details/140163937  浏览:    关键词:Nginx系列(一)---Ubuntu快速使用

一、ubuntu上安装nginx

sudo apt update
sudo apt install nginx
sudo systemctl status nginx
sudo ufw allow 'Nginx Full'
sudo ufw statussudo ufw allow 2283/tcp
sudo ufw reload

二、配置文件地址

sudo vi /etc/nginx/nginx.conf

添加自定义的配置

	include /etc/nginx/conf.d/*.conf;include /home/kequan/project/yinda_django/nginx/project.conf;include /etc/nginx/sites-enabled/*;

直接修改project.conf即可

# upstream photohome {
#     server 127.0.0.1:2283;
# }# upstream yinda {
#     server 127.0.0.1:8080;
# }# 注意:这里的端口不能和upstream中的端口相同,否则会有冲突
server {listen 8000; # 修改为其他端口,例如80location / {# proxy_pass http://yinda; # 添加 http:// 前缀proxy_pass http://127.0.0.1:8080;}
}server {listen 2282;location / {# proxy_pass http://photohome; # 添加 http:// 前缀proxy_pass http://127.0.0.1:2283;}
}

三、重启nginx

systemctl restart nginx.service

四、查看nginx日志

code /var/log/nginx/error.log

code /var/log/nginx/access.log

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com