1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/owncloud_ynh.git synced 2024-09-03 19:56:25 +02:00
This commit is contained in:
Éric Gaspar 2023-11-13 10:02:59 +01:00
parent 7b63f19e33
commit 6fe5679655
5 changed files with 39 additions and 2 deletions

View file

@ -13,3 +13,38 @@ OCIS_LOG_LEVEL=warn
OCIS_CONFIG_DIR=__INSTALL_DIR__
ADMIN_PASSWORD=__PASSWORD__
OCIS_URL: https://__DOMAIN__
PROXY_HTTP_ADDR= 127.0.0.1:__PORT__
OCIS_LOG_LEVEL: info
OCIS_LOG_COLOR: false
PROXY_TLS: false
OCIS_INSECURE: true
PROXY_ENABLE_BASIC_AUTH: false
# admin user password
IDM_ADMIN_PASSWORD: __ADMIN__ # this overrides the admin password from the configuration file
# demo users
IDM_CREATE_DEMO_USERS: false
NOTIFICATIONS_SMTP_HOST: inbucket
NOTIFICATIONS_SMTP_PORT: 2500
NOTIFICATIONS_SMTP_SENDER: oCIS notifications <notifications@${OCIS_DOMAIN:-ocis.owncloud.test}>
NOTIFICATIONS_SMTP_USERNAME: notifications@${OCIS_DOMAIN:-ocis.owncloud.test}
NOTIFICATIONS_SMTP_INSECURE: true # the mail catcher uses self signed certificates
# activate s3ng storage driver
STORAGE_USERS_DRIVER: s3ng
STORAGE_SYSTEM_DRIVER: ocis # keep system data on ocis storage since this are only small files atm
# s3ng specific settings
STORAGE_USERS_S3NG_ENDPOINT: http://minio:9000
STORAGE_USERS_S3NG_REGION: default
STORAGE_USERS_S3NG_ACCESS_KEY: <your-minio-access-key>
STORAGE_USERS_S3NG_SECRET_KEY: <your-minio-secret-key>
STORAGE_USERS_S3NG_BUCKET: ocis-bucket

View file

@ -7,6 +7,7 @@ User=__APP__
Group=__APP__
Environment=OCIS_BASE_DATA_PATH=__DATA_DIR__
Environment=PROXY_HTTP_ADDR=127.0.0.1:__PORT__
Environment=IDM_ADMIN_PASSWORD: __ADMIN__
Environment=OCIS_URL=https://__DOMAIN__
ExecStart=__INSTALL_DIR__/ocis server
Restart=always

View file

@ -1 +0,0 @@
Connect to ownCloud with `admin` as a username and the password selected at install.

View file

@ -1 +0,0 @@
Connectez-vous à ownCloud avec « admin » comme nom d'utilisateur et le mot de passe sélectionné lors de l'installation.

View file

@ -37,6 +37,9 @@ ram.runtime = "50M"
type = "group"
default = "visitors"
[install.admin]
type = "user"
[install.password]
type = "password"