mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
0564532f92
* [git-bridge] Add support for Oauth2 Personal Access Tokens Adds support for Personal Access Tokens by sending a Bearer token authentication when the username is `git`. The feature is controlled by `GIT_BRIDGE_ACCESS_TOKEN_ENABLED` --------- Co-authored-by: Eric Mc Sween <5454374+emcsween@users.noreply.github.com> GitOrigin-RevId: 5553b0b68574158ede86ceec6c618cf4c4b09c92
34 lines
1.5 KiB
JSON
34 lines
1.5 KiB
JSON
{
|
|
"port": ${GIT_BRIDGE_PORT:-8000},
|
|
"bindIp": "${GIT_BRIDGE_BIND_IP:-0.0.0.0}",
|
|
"idleTimeout": ${GIT_BRIDGE_IDLE_TIMEOUT:-30000},
|
|
"rootGitDirectory": "${GIT_BRIDGE_ROOT_DIR:-/tmp/wlgb}",
|
|
"apiBaseUrl": "${GIT_BRIDGE_API_BASE_URL:-https://localhost/api/v0}",
|
|
"postbackBaseUrl": "${GIT_BRIDGE_POSTBACK_BASE_URL:-https://localhost}",
|
|
"serviceName": "${GIT_BRIDGE_SERVICE_NAME:-Overleaf}",
|
|
"oauth2": {
|
|
"oauth2ClientID": "${GIT_BRIDGE_OAUTH2_CLIENT_ID}",
|
|
"oauth2ClientSecret": "${GIT_BRIDGE_OAUTH2_CLIENT_SECRET}",
|
|
"oauth2Server": "${GIT_BRIDGE_OAUTH2_SERVER:-https://localhost}"
|
|
},
|
|
"userPasswordEnabled": ${GIT_BRIDGE_USER_PASSWORD_ENABLED:-true},
|
|
"repoStore": {
|
|
"maxFileNum": ${GIT_BRIDGE_REPOSTORE_MAX_FILE_NUM:-2000},
|
|
"maxFileSize": ${GIT_BRIDGE_REPOSTORE_MAX_FILE_SIZE:-52428800}
|
|
},
|
|
"swapStore": {
|
|
"type": "${GIT_BRIDGE_SWAPSTORE_TYPE:-noop}",
|
|
"awsAccessKey": "${GIT_BRIDGE_SWAPSTORE_AWS_ACCESS_KEY}",
|
|
"awsSecret": "${GIT_BRIDGE_SWAPSTORE_AWS_SECRET}",
|
|
"s3BucketName": "${GIT_BRIDGE_SWAPSTORE_S3_BUCKET_NAME}",
|
|
"awsRegion": "${GIT_BRIDGE_SWAPSTORE_AWS_REGION:-us-east-1}"
|
|
},
|
|
"swapJob": {
|
|
"minProjects": ${GIT_BRIDGE_SWAPJOB_MIN_PROJECTS:-50},
|
|
"lowGiB": ${GIT_BRIDGE_SWAPJOB_LOW_GIB:-128},
|
|
"highGiB": ${GIT_BRIDGE_SWAPJOB_HIGH_GIB:-256},
|
|
"intervalMillis": ${GIT_BRIDGE_SWAPJOB_INTERVAL_MILLIS:-3600000},
|
|
"compressionMethod": "${GIT_BRIDGE_SWAPJOB_COMPRESSION_METHOD:-gzip}"
|
|
},
|
|
"sqliteHeapLimitBytes": ${GIT_BRIDGE_SQLITE_HEAP_LIMIT_BYTES:-0}
|
|
}
|