要在nginx.conf中配置静态文件,首先需要确定存放静态文件的目录位置。然后在nginx.conf的配置文件中添加如下配置:
server {
listen 80;
server_name example.com;
location /static {
alias /path/to/static/files;
}
}
在上面的配置中,/static
是访问静态文件的URL路径,/path/to/static/files
是存放静态文件的实际路径。当用户访问example.com/static/example.jpg
时,nginx会去/path/to/static/files/example.jpg
中查找对应的静态文件并返回给用户。
配置完成后,重启nginx服务使配置生效。这样就可以通过指定的URL路径访问静态文件了。