Initial commit
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
ARG BASE_REPO="repo.nstart.local/"
|
||||
FROM ${BASE_REPO}vaultwarden/server:testing-alpine
|
||||
|
||||
LABEL org.opencontainers.image.title="VaultWarden server" \
|
||||
org.opencontainers.image.description="NStart VaultWarden server."
|
||||
|
||||
COPY config.json /data/config.json
|
||||
|
||||
HEALTHCHECK --interval=15s --timeout=10s CMD /healthcheck.sh || exit 1
|
||||
|
||||
CMD ["/start.sh"]
|
||||
@@ -0,0 +1,59 @@
|
||||
{
|
||||
"domain": "https://vaultwarden.nstart.local",
|
||||
"sends_allowed": true,
|
||||
"incomplete_2fa_time_limit": 3,
|
||||
"disable_icon_download": true,
|
||||
"signups_allowed": false,
|
||||
"signups_verify": false,
|
||||
"signups_verify_resend_time": 3600,
|
||||
"signups_verify_resend_limit": 6,
|
||||
"invitations_allowed": false,
|
||||
"emergency_access_allowed": false,
|
||||
"email_change_allowed": false,
|
||||
"password_iterations": 600000,
|
||||
"password_hints_allowed": false,
|
||||
"show_password_hint": false,
|
||||
"invitation_org_name": "АО Новый Старт",
|
||||
"ip_header": "X-Forwarded-For",
|
||||
"icon_redirect_code": 302,
|
||||
"icon_cache_ttl": 0,
|
||||
"icon_cache_negttl": 259200,
|
||||
"icon_download_timeout": 10,
|
||||
"http_request_block_non_global_ips": true,
|
||||
"disable_2fa_remember": true,
|
||||
"authenticator_disable_time_drift": false,
|
||||
"require_device_email": false,
|
||||
"reload_templates": false,
|
||||
"log_timestamp_format": "%Y-%m-%d %H:%M:%S.%3f",
|
||||
"admin_session_lifetime": 20,
|
||||
"increase_note_size_limit": false,
|
||||
"sso_enabled": true,
|
||||
"sso_only": true,
|
||||
"sso_client_id": "vaultwarden",
|
||||
"sso_authority": "https://auth.nstart.space/realms/nstart",
|
||||
"sso_signups_match_email": true,
|
||||
"sso_allow_unknown_email_verification": false,
|
||||
"sso_scopes": "openid email profile",
|
||||
"sso_pkce": true,
|
||||
"sso_callback_path": "/identity/connect/oidc-signin",
|
||||
"sso_auth_only_not_session": false,
|
||||
"sso_client_cache_expiration": 0,
|
||||
"sso_debug_tokens": false,
|
||||
"_enable_yubico": false,
|
||||
"_enable_duo": false,
|
||||
"_enable_smtp": false,
|
||||
"use_sendmail": false,
|
||||
"smtp_security": "starttls",
|
||||
"smtp_port": 587,
|
||||
"smtp_from_name": "Vaultwarden",
|
||||
"smtp_timeout": 15,
|
||||
"smtp_embed_images": true,
|
||||
"smtp_accept_invalid_certs": false,
|
||||
"smtp_accept_invalid_hostnames": false,
|
||||
"_enable_email_2fa": false,
|
||||
"email_token_size": 6,
|
||||
"email_expiration_time": 600,
|
||||
"email_attempts_limit": 3,
|
||||
"email_2fa_enforce_on_verified_invite": false,
|
||||
"email_2fa_auto_fallback": false
|
||||
}
|
||||
Reference in New Issue
Block a user