Nginx仅在子目录中提供静态文件

时间:2018-09-05 14:48:03

标签: nginx nginx-config

我有图像路径/uploads/{some user id}/0a17f689-b7d5-4592-a16a-85feb1ae00c7.gif。 我想使用Nginx服务这种路径。如何让nginx在与此模式匹配的所有目录中查找文件,但是我不想在URL中包含{some user id}。所以我想要这样的网址/uploads/0a17f689-b7d5-4592-a16a-85feb1ae00c7.gif

这是我的nginx.conf位置:

  location /uploads/ {
    alias /cncdata/uploads/;
    autoindex off;
  }

0 个答案:

没有答案