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 85d7ab9 commit 81eb964Copy full SHA for 81eb964
.github/docker/docker-compose.yaml
@@ -46,6 +46,7 @@ services:
46
- S3QUOTA
47
- QUOTA_ENABLE_INFLIGHTS
48
- S3_VERSION_ID_ENCODING_TYPE
49
+ - S3_ENABLE_SERVER_ACCESS_LOGS=true
50
env_file:
51
- creds.env
52
depends_on:
lib/Config.js
@@ -592,6 +592,10 @@ function parseServerAccessLogs(config) {
592
}
593
594
595
+ if (process.env.S3_ENABLE_SERVER_ACCESS_LOGS === 'true') {
596
+ res.enabled = true;
597
+ }
598
+
599
return res;
600
601
0 commit comments