We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5951dfd commit 63f3416Copy full SHA for 63f3416
2 files changed
etc/nginx/conf.d/default.conf
@@ -12,6 +12,7 @@ server {
12
proxy_redirect off;
13
client_max_body_size 10G;
14
proxy_read_timeout 600s;
15
+ proxy_set_header X-Forwarded-Proto $scheme;
16
}
17
18
location /static/ {
vulnerablecode/settings.py
@@ -251,7 +251,7 @@
251
"EXCEPTION_HANDLER": "vulnerabilities.throttling.throttled_exception_handler",
252
"DEFAULT_PAGINATION_CLASS": "vulnerabilities.pagination.SmallResultSetPagination",
253
# Limit the load on the Database returning a small number of records by default. https://github.com/nexB/vulnerablecode/issues/819
254
- "PAGE_SIZE": 10,
+ "PAGE_SIZE": 100,
255
# for API docs
256
"DEFAULT_SCHEMA_CLASS": "drf_spectacular.openapi.AutoSchema",
257
"DATETIME_FORMAT": "%Y-%m-%dT%H:%M:%SZ",
0 commit comments