- Added new components for managing services, including creation, editing, and listing. - Introduced stack management functionalities, allowing users to create, edit, and view stacks. - Implemented user management features, enabling user creation, editing, and listing. - Enhanced volume management with create and info functionalities. - Integrated network management capabilities, including listing and viewing networks. - Developed task management features for viewing and listing tasks. - Added support for Docker registry interactions, including authentication and repository management. - Implemented error handling and user feedback mechanisms throughout the application. - Established a robust routing system for navigating between different components and views. - Enhanced the overall user experience with improved UI components and state management.
24 lines
1.1 KiB
Bash
Executable File
24 lines
1.1 KiB
Bash
Executable File
#General Settings
|
|
ADMIN_TOKEN=AA103626bb! # randomly generated string of characters, for example running openssl rand -base64 48
|
|
#//Refer https://github.com/dani-garcia/vaultwarden/wiki/Enabling-admin-page#secure-the-admin_token
|
|
|
|
WEBSOCKET_ENABLED=true
|
|
SIGNUPS_ALLOWED=true ##change to false once create the admin account
|
|
DOMAIN=https://passwd.prestonhunter.space #replace example.com with your domain
|
|
|
|
# SMTP server configuration
|
|
SMTP_HOST=smtp.protonmail.ch
|
|
SMTP_FROM=no-reply@prestonhunter.space ##replace example.com with your domain
|
|
SMTP_TIMEOUT=15
|
|
SMTP_USERNAME=no-reply@prestonhunter.space ##sendinblue user
|
|
SMTP_PASSWORD=15CB3FLWEMW56DQP
|
|
SMTP_SECURITY=starttls # Options: off, force_tls, starttls
|
|
SMTP_PORT=587
|
|
|
|
## Choose the type of secure connection for SMTP. The default is "starttls".
|
|
## The available options are:
|
|
## - "starttls": The default port is 587.
|
|
## - "force_tls": The default port is 465.
|
|
## - "off": The default port is 25.
|
|
## Ports 587 (submission) and 25 (smtp) are standard without encryption and with encryption via STARTTLS (Explicit TLS). Port 465 (submissions) is used for encrypted submission (Implicit TLS).
|