欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 文旅 > 手游 > Ubuntu 24 云服务器上部署网站_详细版_2

Ubuntu 24 云服务器上部署网站_详细版_2

2025/4/5 6:35:48 来源:https://blog.csdn.net/Jay_NanX/article/details/146981914  浏览:    关键词:Ubuntu 24 云服务器上部署网站_详细版_2

正式部署 Django 网站

✅ 用域名访问(不用再写 :8000
✅ 自动跳转 HTTPS(安全的 https://域名
✅ 后端用 Gunicorn 启动 Django
✅ 前端用 Nginx 做反向代理 + SSL 证书(Let's Encrypt)

步骤 1:安装必要软件

在服务器上执行:

sudo apt update
sudo apt install nginx python3-pip python3-venv -y
pip install gunicorn

步骤 2:收集静态文件

在 Django 项目里执行:

source venv/bin/activate
python3 manage.py collectstatic

步骤 3:用 Gunicorn 启动 Django 服务

在项目根目录运行(一次性测试):

gunicorn --bind unix:/home/root/mywebsite/gunicorn.sock myproject.wsgi:application

注意你需要把路径改成真实的目录,如:

gunicorn --bind unix:/root/mywebsite/gunicorn.sock myproject.wsgi:application

如果这能正常运行,下一步我们让它后台运行。

步骤 4:创建 Gunicorn 的 systemd 服务

sudo nano /etc/systemd/system/gunicorn.service

粘贴以下内容(注意修改用户名和路径):

[Unit]
Description=gunicorn daemon
After=network.target[Service]
User=root
Group=www-data
WorkingDirectory=/root/mywebsite
ExecStart=/root/mywebsite/venv/bin/gunicorn --access-logfile - --workers 3 --bind unix:/root/mywebsite/gunicorn.sock myproject.wsgi:application[Install]
WantedBy=multi-user.target

保存退出(Ctrl+X → Y → 回车)

然后启用服务:

sudo systemctl daemon-reexec
sudo systemctl start gunicorn
sudo systemctl enable gunicorn
sudo systemctl status gunicorn

看到 active (running) 就说明后端 OK。

步骤 5:配置 Nginx 做前端代理

创建新配置:

sudo nano /etc/nginx/sites-available/myproject

粘贴以下内容(替换 axuana.top 和路径):

server {listen 80;server_name axuana.top www.axuana.top;location = /favicon.ico { access_log off; log_not_found off; }location /static/ {alias /root/mywebsite/staticfiles/;}location / {include proxy_params;proxy_pass http://unix:/root/mywebsite/gunicorn.sock;}
}

保存后创建链接并重启 Nginx:

sudo ln -s /etc/nginx/sites-available/myproject /etc/nginx/sites-enabled/
sudo nginx -t
sudo systemctl restart nginx

现在打开浏览器访问:

http://域名/

应该能看到网站(用的是 Nginx 正式端口 80)

步骤 6:配置 HTTPS(Let’s Encrypt 免费证书)

先安装工具:

sudo apt install certbot python3-certbot-nginx -y

然后执行:

sudo certbot --nginx -d axuana.top -d www.axuana.top

根据提示选择“强制跳转到 HTTPS”,它会自动生成 SSL 证书并配置好 HTTPS。

成功后你可以访问:

https://域名/

就变成真正安全的、用域名上线的网站了

版权声明:

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

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

热搜词