mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Merge pull request #11769 from overleaf/jpa-s3-config
[server-ce] add support for s3 backend in filestore GitOrigin-RevId: 20998547326e75acf22562d2964db78ae261b6bf
This commit is contained in:
parent
583a27cfb6
commit
9cf1373777
2 changed files with 43 additions and 31 deletions
|
@ -361,7 +361,7 @@ module.exports = class S3Persistor extends AbstractPersistor {
|
||||||
options.s3ForcePathStyle = true
|
options.s3ForcePathStyle = true
|
||||||
}
|
}
|
||||||
|
|
||||||
for (const opt of ['httpOptions', 'maxRetries']) {
|
for (const opt of ['httpOptions', 'maxRetries', 'region']) {
|
||||||
if (this.settings[opt]) {
|
if (this.settings[opt]) {
|
||||||
options[opt] = this.settings[opt]
|
options[opt] = this.settings[opt]
|
||||||
}
|
}
|
||||||
|
|
|
@ -167,31 +167,6 @@ const settings = {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
||||||
// File storage
|
|
||||||
// ------------
|
|
||||||
|
|
||||||
// ShareLaTeX can store binary files like images either locally or in Amazon
|
|
||||||
// S3. The default is locally:
|
|
||||||
filestore: {
|
|
||||||
backend: 'fs',
|
|
||||||
stores: {
|
|
||||||
user_files: Path.join(DATA_DIR, 'user_files'),
|
|
||||||
template_files: Path.join(DATA_DIR, 'template_files'),
|
|
||||||
},
|
|
||||||
},
|
|
||||||
|
|
||||||
// To use Amazon S3 as a storage backend, comment out the above config, and
|
|
||||||
// uncomment the following, filling in your key, secret, and bucket name:
|
|
||||||
//
|
|
||||||
// filestore:
|
|
||||||
// backend: "s3"
|
|
||||||
// stores:
|
|
||||||
// user_files: "BUCKET_NAME"
|
|
||||||
// s3:
|
|
||||||
// key: "AWS_KEY"
|
|
||||||
// secret: "AWS_SECRET"
|
|
||||||
//
|
|
||||||
|
|
||||||
trackchanges: {
|
trackchanges: {
|
||||||
continueOnError: true,
|
continueOnError: true,
|
||||||
},
|
},
|
||||||
|
@ -299,7 +274,7 @@ const settings = {
|
||||||
url: 'http://localhost:3100/api',
|
url: 'http://localhost:3100/api',
|
||||||
user: 'staging',
|
user: 'staging',
|
||||||
pass: process.env.STAGING_PASSWORD,
|
pass: process.env.STAGING_PASSWORD,
|
||||||
}
|
},
|
||||||
},
|
},
|
||||||
references: {},
|
references: {},
|
||||||
notifications: undefined,
|
notifications: undefined,
|
||||||
|
@ -747,10 +722,12 @@ if (process.env.SHARELATEX_TEMPLATES_USER_ID) {
|
||||||
if (process.env.SHARELATEX_PROXY_LEARN != null) {
|
if (process.env.SHARELATEX_PROXY_LEARN != null) {
|
||||||
settings.proxyLearn = parse(process.env.SHARELATEX_PROXY_LEARN)
|
settings.proxyLearn = parse(process.env.SHARELATEX_PROXY_LEARN)
|
||||||
if (settings.proxyLearn) {
|
if (settings.proxyLearn) {
|
||||||
settings.nav.header_extras = [{
|
settings.nav.header_extras = [
|
||||||
url: '/learn',
|
{
|
||||||
text: 'documentation',
|
url: '/learn',
|
||||||
}].concat(settings.nav.header_extras || [])
|
text: 'documentation',
|
||||||
|
},
|
||||||
|
].concat(settings.nav.header_extras || [])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -762,6 +739,41 @@ if (process.env.SHARELATEX_ELASTICSEARCH_URL != null) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// filestore
|
||||||
|
switch (process.env.SHARELATEX_FILESTORE_BACKEND) {
|
||||||
|
case 's3':
|
||||||
|
settings.filestore = {
|
||||||
|
backend: 's3',
|
||||||
|
stores: {
|
||||||
|
user_files: process.env.SHARELATEX_FILESTORE_USER_FILES_BUCKET_NAME,
|
||||||
|
template_files:
|
||||||
|
process.env.SHARELATEX_FILESTORE_TEMPLATE_FILES_BUCKET_NAME,
|
||||||
|
},
|
||||||
|
s3: {
|
||||||
|
key:
|
||||||
|
process.env.SHARELATEX_FILESTORE_S3_ACCESS_KEY_ID ||
|
||||||
|
process.env.AWS_ACCESS_KEY_ID,
|
||||||
|
secret:
|
||||||
|
process.env.SHARELATEX_FILESTORE_S3_SECRET_ACCESS_KEY ||
|
||||||
|
process.env.AWS_ACCESS_KEY_ID,
|
||||||
|
endpoint: process.env.SHARELATEX_FILESTORE_S3_ENDPOINT,
|
||||||
|
pathStyle: process.env.SHARELATEX_FILESTORE_S3_PATH_STYLE === 'true',
|
||||||
|
region:
|
||||||
|
process.env.SHARELATEX_FILESTORE_S3_REGION ||
|
||||||
|
process.env.AWS_DEFAULT_REGION,
|
||||||
|
},
|
||||||
|
}
|
||||||
|
break
|
||||||
|
default:
|
||||||
|
settings.filestore = {
|
||||||
|
backend: 'fs',
|
||||||
|
stores: {
|
||||||
|
user_files: Path.join(DATA_DIR, 'user_files'),
|
||||||
|
template_files: Path.join(DATA_DIR, 'template_files'),
|
||||||
|
},
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// With lots of incoming and outgoing HTTP connections to different services,
|
// With lots of incoming and outgoing HTTP connections to different services,
|
||||||
// sometimes long running, it is a good idea to increase the default number
|
// sometimes long running, it is a good idea to increase the default number
|
||||||
// of sockets that Node will hold open.
|
// of sockets that Node will hold open.
|
||||||
|
|
Loading…
Reference in a new issue