2014-04-02 12:45:41 -04:00
|
|
|
Path = require "path"
|
|
|
|
|
2014-02-14 11:39:05 -05:00
|
|
|
module.exports =
|
|
|
|
internal:
|
|
|
|
filestore:
|
|
|
|
port: 3009
|
|
|
|
host: "localhost"
|
2014-03-04 10:01:13 -05:00
|
|
|
|
|
|
|
filestore:
|
2014-04-02 12:45:41 -04:00
|
|
|
# Which backend persistor to use.
|
|
|
|
# Choices are
|
2014-03-04 10:01:13 -05:00
|
|
|
# s3 - Amazon S3
|
|
|
|
# fs - local filesystem
|
2014-04-02 12:45:41 -04:00
|
|
|
backend: "fs"
|
2014-03-04 10:01:13 -05:00
|
|
|
stores:
|
2014-04-02 12:45:41 -04:00
|
|
|
# where to store user and template binary files
|
2014-03-04 10:01:13 -05:00
|
|
|
#
|
2014-04-02 12:45:41 -04:00
|
|
|
# For Amazon S3 this is the bucket name to store binary files in.
|
2014-03-04 10:01:13 -05:00
|
|
|
#
|
|
|
|
# For local filesystem this is the directory to store the files in.
|
2014-04-02 12:45:41 -04:00
|
|
|
# Must contain full path, e.g. "/var/lib/sharelatex/data".
|
2014-03-04 10:01:13 -05:00
|
|
|
# This path must exist, not be tmpfs and be writable to by the user sharelatex is run as.
|
2014-04-02 12:45:41 -04:00
|
|
|
user_files: Path.resolve(__dirname + "/../user_files")
|
|
|
|
# if you are using S3, then fill in your S3 details below
|
|
|
|
# s3:
|
|
|
|
# key: ""
|
|
|
|
# secret: ""
|
2014-02-14 11:39:05 -05:00
|
|
|
|
|
|
|
# Filestore health check
|
|
|
|
# ----------------------
|
2014-02-25 11:38:13 -05:00
|
|
|
# Project and file details to check in persistor when calling /health_check
|
2014-02-14 11:39:05 -05:00
|
|
|
# health_check:
|
|
|
|
# project_id: ""
|
|
|
|
# file_id: ""
|