我正在使用 Django + Apache 和 Nginx 构建一个网站来提供我的静态内容。我的网站索引不需要任何后端 Django 编码,所以我需要在 nginx.conf 中进行哪些更改才能将 location / { } 的请求发送到我的静态内容中的某个 index.html,同时仍然允许我的 urls.py 处理适当的模式?
upstream backend {
server 127.0.0.1:8080;
}
server {
listen 192.168.1.20:80;
server_name www.example.com example.com;
access_log /home/userxyz/public_html/example.com/logs/nginx_access.log;
error_log /home/userxyz/public_html/example.com/logs/nginx_error.log;
location /
{
proxy_pass http://127.0.0.1:8080;
include /etc/nginx/proxy.conf;
}
location ~ ^/(system|images|robots\.txt|css|js|favicon\.ico).*$
{
root /home/userxyz/public_html/example.com/static-content/;
}
location /media/
{
root /home/userxyz/public_html/example.com/;
}
}