EADST

在 Django + uWSGI 架构中,如何让 Nginx 单独托管一个 HTML 页面

在使用 Django + uWSGI + Nginx 的架构时,默认所有请求都会被转发给 Django 处理。但在实际场景中,经常会遇到这种需求:

我只想单独暴露一个 HTML 页面(如 verification.html), 不想经过 Django,也不想改 uWSGI。

本文记录一次真实排错过程,重点讲清楚正确配置方式以及最容易踩的坑


一、问题背景

  • 主站架构:Nginx → uWSGI → Django
  • Django 负责绝大多数请求
  • 目标 URL:

http://eadst.com/verification.html * 目标文件路径:

/home/www/blog/templates/verification.html * 要求:

  • 仅由 Nginx 静态返回
  • 不修改 Django / uWSGI
  • 不影响现有站点

二、核心原则(非常重要)

1️⃣ 使用 精确匹配

必须使用:

location = /verification.html

否则请求会被:

location / { uwsgi_pass ... }

抢走,进入 Django。


2️⃣ 避免 alias + try_files 混用(坑点)

这是这次 404 的根因

很多人会写成这样(❌ 不推荐):

location = /verification.html {
    alias /home/www/blog/templates/verification.html;
    try_files /home/www/blog/templates/verification.html =404;
}

精确匹配 + 单文件场景 下,这种写法非常容易导致 Nginx 判定文件不存在,最终触发 error_page 404


三、最终正确 & 稳定的配置方式(推荐)

✅ 使用 root + try_files(最稳)

直接把下面这段加到 对应 server 块中,并且放在 location / 前面:

location = /verification.html {
    root /home/www/blog/templates;
    try_files /verification.html =404;
    default_type text/html;
    access_log off;
}

路径映射逻辑

请求: /verification.html 实际文件: /home/www/blog/templates/verification.html


四、完整示例 server 配置(节选)

server {
    listen 80;
    server_name eadst.com www.eadst.com 100.xxx.xxx.xxx;

    access_log  /home/www/blog/script/access.log;
    error_log   /home/www/blog/script/error.log;

    charset utf-8;

    error_page 404 /404.html;
    error_page 500 502 503 504 /50x.html;

    # 单独托管 verification.html(不进 Django)
    location = /verification.html {
        root /home/www/blog/templates;
        try_files /verification.html =404;
        default_type text/html;
        access_log off;
    }

    location /static/ {
        alias /home/www/blog/static/;
    }

    location / {
        include uwsgi_params;
        uwsgi_pass 10.0.8.8:8888;
    }
}

五、验证是否生效(非常关键)

1️⃣ 重载配置

sudo nginx -t
sudo /etc/init.d/nginx reload

2️⃣ 本机 curl 验证(推荐)

curl -i http://127.0.0.1/verification.html -H "Host: eadst.com"

正确结果应该是:

  • HTTP/1.1 200 OK
  • Server: nginx
  • 返回 verification.html 内容
  • 不是 Django 的 404 页面

六、排错思路总结(非常实用)

如果你遇到类似 404,可以按这个顺序排:

  1. 是不是精确匹配 location =
  2. 配置文件是否真的被加载

nginx -T | grep verification 3. 是否命中了 Django 的 404 页面

  • 是 → location 没生效
  • 是否混用了 alias + try_files
  • 路径权限是否可达

namei -l /path/to/file.html


七、工程级建议(长期)

不建议把对外暴露的 HTML 放在 templates 目录

更合理的做法是:

  • 放到 /static//var/www/html/
  • 由 Nginx 统一管理静态资源
  • Django templates 只给后端渲染用

八、总结一句话

在 Django + uWSGI 架构中, 想单独托管一个 HTML 页面, 用 location = + root + try_files, 简单、稳定、不踩坑。

如果你后面还想扩展成单独托管一个目录 / 验证文件 / SEO 校验页 / CDN 回源页,这套方法都能直接复用。

相关标签
About Me
XD
Goals determine what you are going to be.
Category
标签云
Michelin scipy Datetime Attention 关于博主 Tracking SAM OpenAI Magnet Statistics LaTeX XML Distillation Bipartite RGB Windows NLP tar Bert 第一性原理 RL Github Conda BeautifulSoup C++ icon Django 论文速读 Password API CLAP Zip ModelScope Knowledge hf TensorFlow Markdown WebCrawler 阿里云 Firewall Diagram Shortcut Clash FP32 Pillow InvalidArgumentError Proxy Card ms-swift git-lfs PyCharm git Template ChatGPT 图形思考法 CAM CC CSV Algorithm Plotly LLM Animate Breakpoint JSON Bitcoin Mixtral QWEN Llama 签证 证件照 搞笑 Tensor Review Sklearn Qwen2.5 Quantization Video 强化学习 FastAPI MD5 CUDA YOLO 论文 News NameSilo Pandas Interview diffusers Miniforge Permission 顶会 Jupyter 图标 Domain Hilton GoogLeNet DeepStream GPT4 Land Search Paddle Claude DeepSeek 报税 TensorRT SQLite LoRA v0.dev PDF Image2Text Food Anaconda UNIX SQL Crawler mmap Ubuntu 云服务器 Qwen2 算法题 Web HaggingFace SVR Excel Input ONNX Color Baidu Agent Ptyhon Numpy LeetCode RAR transformers GIT Hungarian printf Data XGBoost uWSGI PyTorch 继承 净利润 Vmess Website NLTK Paper EXCEL Bin uwsgi 域名 Freesound Random ResNet-50 TSV FP64 Translation COCO Use UI v2ray 飞书 Docker FP8 Pytorch 多线程 Logo GGML 财报 CV logger Cloudreve Quantize 公式 CTC PDB Transformers VSCode SPIE Vim Plate Git AI 音频 多进程 Tiktoken Hotel BF16 版权 Jetson Gemma Google WAN tqdm IndexTTS2 Rebuttal GPTQ Qwen VGG-16 VPN FP16 Linux llama.cpp FlashAttention 递归学习法 Pickle 腾讯云 PIP OCR Dataset Heatmap Nginx TTS Safetensors Base64 LLAMA Streamlit BTC HuggingFace CEIR Python OpenCV Disk Augmentation Math torchinfo API网关
站点统计

本站现有博文335篇,共被浏览937411

本站已经建立2648天!

热门文章
文章归档
回到顶部