正式部署 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://域名/
就变成真正安全的、用域名上线的网站了