Initial commit for Ente Cloudron package
This commit is contained in:
44
config.template.yaml
Normal file
44
config.template.yaml
Normal file
@ -0,0 +1,44 @@
|
||||
server:
|
||||
host: "0.0.0.0"
|
||||
port: 8080
|
||||
baseURL: "%%APP_ORIGIN%%"
|
||||
cors:
|
||||
origins: ["%%APP_ORIGIN%%"]
|
||||
sessionSecret: "$(openssl rand -hex 32)"
|
||||
|
||||
database:
|
||||
host: "%%POSTGRESQL_HOST%%"
|
||||
port: %%POSTGRESQL_PORT%%
|
||||
user: "%%POSTGRESQL_USERNAME%%"
|
||||
password: "%%POSTGRESQL_PASSWORD%%"
|
||||
database: "%%POSTGRESQL_DATABASE%%"
|
||||
ssl: true
|
||||
|
||||
storage:
|
||||
type: "s3"
|
||||
s3:
|
||||
endpoint: "%%S3_ENDPOINT%%"
|
||||
region: "%%S3_REGION%%"
|
||||
bucket: "%%S3_BUCKET%%"
|
||||
accessKey: "%%S3_ACCESS_KEY%%"
|
||||
secretKey: "%%S3_SECRET_KEY%%"
|
||||
prefix: "%%S3_PREFIX%%"
|
||||
forcePathStyle: true
|
||||
|
||||
email:
|
||||
smtp:
|
||||
host: "%%MAIL_SMTP_SERVER%%"
|
||||
port: %%MAIL_SMTP_PORT%%
|
||||
user: "%%MAIL_SMTP_USERNAME%%"
|
||||
password: "%%MAIL_SMTP_PASSWORD%%"
|
||||
secure: true
|
||||
from:
|
||||
email: "%%MAIL_FROM%%"
|
||||
name: "%%MAIL_FROM_DISPLAY_NAME%%"
|
||||
|
||||
auth:
|
||||
jwtSecret: "$(openssl rand -hex 32)"
|
||||
tokenExpiry: 86400
|
||||
|
||||
logging:
|
||||
level: "info"
|
Reference in New Issue
Block a user