要配置 NGINX 以訪問靜態文件,您需要編輯 NGINX 的配置文件,并將以下配置添加到其中:
server {
listen 80; # 監聽端口
server_name example.com; # 您的域名
location /static {
alias /path/to/static/files; # 靜態文件的路徑
}
location / {
proxy_pass http://localhost:8000; # 反向代理到您的應用程序
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
}
在上面的配置中,您需要將 example.com
替換為您的域名,將 /path/to/static/files
替換為存儲靜態文件的路徑。您還可以根據需求更改端口號和其他配置選項。
保存并重新加載 NGINX 配置文件后,您的 NGINX 服務器就會配置為訪問靜態文件了。您可以直接通過 http://example.com/static
訪問靜態文件。