Skip to content

Commit

Permalink
Merge pull request #129 from hubmapconsortium/test-release
Browse files Browse the repository at this point in the history
v2.0.17 release
  • Loading branch information
yuanzhou authored Oct 20, 2021
2 parents 7dd523e + 33c212a commit 36a0afd
Show file tree
Hide file tree
Showing 9 changed files with 57 additions and 1 deletion.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.16
2.0.17
10 changes: 10 additions & 0 deletions api_endpoints.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
"endpoint": "/datasets/<*>/file-system-abs-path",
"auth": false
},
{
"method": "GET",
"endpoint": "/uploads/<*>/file-system-abs-path",
"auth": false
},
{
"method": "POST",
"endpoint": "/datasets/ingest",
Expand Down Expand Up @@ -807,6 +812,11 @@
"method": "GET",
"endpoint": "/tui/<*>/semantics",
"auth": false
},
{
"method": "GET",
"endpoint": "/fullCapacityParameterizedTerm/<*>",
"auth": false
}
]
}
10 changes: 10 additions & 0 deletions api_endpoints.localhost.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
"endpoint": "/datasets/<*>/file-system-abs-path",
"auth": false
},
{
"method": "GET",
"endpoint": "/uploads/<*>/file-system-abs-path",
"auth": false
},
{
"method": "POST",
"endpoint": "/datasets/ingest",
Expand Down Expand Up @@ -807,6 +812,11 @@
"method": "GET",
"endpoint": "/tui/<*>/semantics",
"auth": false
},
{
"method": "GET",
"endpoint": "/fullCapacityParameterizedTerm/<*>",
"auth": false
}
]
}
10 changes: 10 additions & 0 deletions api_endpoints.prod.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
"endpoint": "/datasets/<*>/file-system-abs-path",
"auth": false
},
{
"method": "GET",
"endpoint": "/uploads/<*>/file-system-abs-path",
"auth": false
},
{
"method": "POST",
"endpoint": "/datasets/ingest",
Expand Down Expand Up @@ -807,6 +812,11 @@
"method": "GET",
"endpoint": "/tui/<*>/semantics",
"auth": false
},
{
"method": "GET",
"endpoint": "/fullCapacityParameterizedTerm/<*>",
"auth": false
}
]
}
10 changes: 10 additions & 0 deletions api_endpoints.stage.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
"endpoint": "/datasets/<*>/file-system-abs-path",
"auth": false
},
{
"method": "GET",
"endpoint": "/uploads/<*>/file-system-abs-path",
"auth": false
},
{
"method": "POST",
"endpoint": "/datasets/ingest",
Expand Down Expand Up @@ -807,6 +812,11 @@
"method": "GET",
"endpoint": "/tui/<*>/semantics",
"auth": false
},
{
"method": "GET",
"endpoint": "/fullCapacityParameterizedTerm/<*>",
"auth": false
}
]
}
10 changes: 10 additions & 0 deletions api_endpoints.test.json
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,11 @@
"endpoint": "/datasets/<*>/file-system-abs-path",
"auth": false
},
{
"method": "GET",
"endpoint": "/uploads/<*>/file-system-abs-path",
"auth": false
},
{
"method": "POST",
"endpoint": "/datasets/ingest",
Expand Down Expand Up @@ -807,6 +812,11 @@
"method": "GET",
"endpoint": "/tui/<*>/semantics",
"auth": false
},
{
"method": "GET",
"endpoint": "/fullCapacityParameterizedTerm/<*>",
"auth": false
}
]
}
3 changes: 3 additions & 0 deletions nginx/conf.d-dev/antibody-api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ server {
access_log /usr/src/app/log/nginx_access_antibody-api.log;
error_log /usr/src/app/log/nginx_error_antibody-api.log warn;

# Set file upload size liit to 10M, default is 1M.
client_max_body_size 10M;

# No auth_request for favicon
location = /favicon.ico {
alias /usr/share/nginx/html/favicon.ico;
Expand Down
File renamed without changes.
3 changes: 3 additions & 0 deletions nginx/conf.d-test/antibody-api.conf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ server {
access_log /usr/src/app/log/nginx_access_antibody-api.log;
error_log /usr/src/app/log/nginx_error_antibody-api.log warn;

# Set file upload size liit to 10M, default is 1M.
client_max_body_size 10M;

# No auth_request for favicon
location = /favicon.ico {
alias /usr/share/nginx/html/favicon.ico;
Expand Down

0 comments on commit 36a0afd

Please sign in to comment.