We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af65f3a commit 5115a2dCopy full SHA for 5115a2d
docker-compose/nginx/templates/bb.conf.template
@@ -54,6 +54,13 @@ server {
54
proxy_pass http://127.0.0.1:8010;
55
}
56
57
+ location = /api/v2/buildsets {
58
+ if ($args = "") {
59
+ return 403 "Not allowed.\n";
60
+ }
61
+ proxy_pass http://127.0.0.1:8010;
62
63
+
64
# disallow bots
65
location = /robots.txt {
66
add_header Content-Type text/plain;
0 commit comments