nginx 配置静态资源
2025-03-23
5
在 Nginx 中配置静态资源的步骤如下:
编辑 Nginx 配置文件
通常位于/etc/nginx/nginx.conf
或/etc/nginx/sites-available/default
。添加静态资源路径
在server
块中添加以下内容:server { listen 80; server_name example.com; location /static/ { alias /path/to/your/static/files/; autoindex off; } location /media/ { alias /path/to/your/media/files/; autoindex off; } }
/static/
是 URL 路径,访问时使用http://example.com/static/
。/path/to/your/static/files/
是服务器上静态文件的实际路径。autoindex off
禁止目录列表。检查配置并重启 Nginx
sudo nginx -t # 检查配置是否正确 sudo systemctl restart nginx # 重启 Nginx
访问静态资源
通过浏览器访问http://example.com/static/yourfile.ext
即可获取静态资源。
本篇文章内容来源于:nginx 配置静态资源
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。