diff --git a/conf/.env b/conf/.env index fc31857..2fe2602 100644 --- a/conf/.env +++ b/conf/.env @@ -3,9 +3,8 @@ PROXY_HTTP_ADDR=127.0.0.1:__PORT__ PROXY_TLS=false OCIS_INSECURE=false -#tls_certificate_path: "/etc/yunohost/certs/__DOMAIN__/crt.pem" -#tls_private_key_path: "/etc/yunohost/certs/__DOMAIN__/key.pem" - +OCIS_HTTP_TLS_CERTIFICATE="/etc/yunohost/certs/__DOMAIN__/crt.pem" +OCIS_HTTP_TLS_KEY="/etc/yunohost/certs/__DOMAIN__/key.pem" OCIS_LOG_LEVEL=warn diff --git a/manifest.toml b/manifest.toml index bd4c8bb..5e19794 100644 --- a/manifest.toml +++ b/manifest.toml @@ -36,7 +36,7 @@ ram.runtime = "50M" [install.init_main_permission] type = "group" default = "visitors" - + [install.language] ask.en = "Choose the application language" ask.fr = "Choisissez la langue de l'application" @@ -76,3 +76,9 @@ ram.runtime = "50M" [resources.permissions] main.url = "/" main.auth_header = false + + api.url = "/api" + api.auth_header = false + api.show_tile = false + api.protected= true + api.allowed = ["visitors"]