Skip to content

Commit

Permalink
fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
philipparndt committed May 11, 2024
1 parent d779d79 commit 9d60f1b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion stub/nginx.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,12 @@ server {
listen [::]:80;
server_name localhost;

location / {
location /clip/v2/resource {
root /usr/share/nginx/html;
try_files $uri /clip/v2/resource/device.json =404;
}

location /clip/v2/resource/ {
root /usr/share/nginx/html;
try_files $uri $uri/ $uri.json =404;
}
Expand Down

0 comments on commit 9d60f1b

Please sign in to comment.