mirror of
https://github.com/aliasvault/aliasvault.git
synced 2026-01-30 17:02:32 -05:00
107 lines
4.6 KiB
Plaintext
107 lines
4.6 KiB
Plaintext
# ----------------------------------------------------------------------------
|
|
# AliasVault configuration file.
|
|
#
|
|
# Note: we recommend using the provided install.sh script to install and
|
|
# configure AliasVault, as this will automatically set all of the following
|
|
# variables for you and allow you to easily change them later via the CLI.
|
|
# It also allows for easily updating AliasVault to a newer version in the
|
|
# future.
|
|
#
|
|
# However if you still wish to manually install or configure AliasVault,
|
|
# you can do so below.
|
|
#
|
|
# After changing settings here, make sure to restart all AliasVault
|
|
# Docker containers to apply the changes.
|
|
# ----------------------------------------------------------------------------
|
|
|
|
# Configure the network ports used by AliasVault by the `reverse-proxy` and `smtp` containers.
|
|
# You can change these if the defaults are in use on your system.
|
|
# After making changes, re-run the install script to apply them.
|
|
HTTP_PORT=80
|
|
HTTPS_PORT=443
|
|
SMTP_PORT=25
|
|
SMTP_TLS_PORT=587
|
|
|
|
# Set the hostname that your AliasVault will be accessible at.
|
|
# E.g. `aliasvault.mydomain.com` or if you're running it on your local machine, choose `localhost`.
|
|
HOSTNAME=
|
|
|
|
# Set a random 32 character string for the JWT key.
|
|
# This can be generated using the following command:
|
|
# $ openssl rand -base64 32
|
|
JWT_KEY=
|
|
|
|
# Set the password for the data protection certificate.
|
|
# This can be generated using the following command:
|
|
# $ openssl rand -base64 32
|
|
DATA_PROTECTION_CERT_PASS=
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Database configuration
|
|
# ----------------------------------------------------------------------------
|
|
# These are the credentials that are used by the PostgreSQL container
|
|
# on startup to create the database and user, and for the application to
|
|
# connect to the database.
|
|
POSTGRES_DB=aliasvault
|
|
POSTGRES_USER=aliasvault
|
|
|
|
# Set the password for the database user.
|
|
# This can be generated using the following command:
|
|
# $ openssl rand -base64 32
|
|
POSTGRES_PASSWORD=
|
|
|
|
# Note: in order to change the password for an existing installation
|
|
# refer to https://docs.aliasvault.net/misc/dev/database-operations.html
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Admin user configuration
|
|
# ----------------------------------------------------------------------------
|
|
# Set the password for the admin user. This is an encrypted hash that needs
|
|
# to be generated using the `aliasvault-cli` tool. This allows you to login
|
|
# to the admin panel at https://your-hostname/admin.
|
|
#
|
|
# For example:
|
|
# docker run --rm ghcr.io/lanedirt/aliasvault-installcli:latest hash-password "my-password"
|
|
#
|
|
# Then copy the output and paste it into the ADMIN_PASSWORD_HASH variable below.
|
|
# When changing the hash, update the ADMIN_PASSWORD_GENERATED variable to the current date and time
|
|
# and then restart the AliasVault docker containers to apply the changes.
|
|
ADMIN_PASSWORD_HASH=
|
|
|
|
# Set the date and time the admin password was last generated. When changing the
|
|
# admin password hash manually, make sure to increase this value so the system
|
|
# knows that the password has been changed and should be overwritten with the new hash.
|
|
ADMIN_PASSWORD_GENERATED=2024-01-01T00:00:00Z
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Email server configuration for email aliases
|
|
# ----------------------------------------------------------------------------
|
|
# In order to use AliasVault's private email domains feature, you need to configure
|
|
# your DNS. Please refer to the full documentation for more instructions on DNS:
|
|
# https://docs.aliasvault.net/installation/install.html#3-email-server-setup
|
|
#
|
|
# Set the private email domains below that are allowed to be used (comma separated values).
|
|
# Example: PRIVATE_EMAIL_DOMAINS=example.com,example2.org
|
|
# To disable the private email domains feature, set this to "DISABLED.TLD"
|
|
PRIVATE_EMAIL_DOMAINS=DISABLED.TLD
|
|
|
|
# Set whether TLS is enabled for SMTP.
|
|
SMTP_TLS_ENABLED=false
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Let's Encrypt configuration
|
|
# ----------------------------------------------------------------------------
|
|
# Set whether Let's Encrypt is enabled. This is only supported through
|
|
# the install.sh script.
|
|
LETSENCRYPT_ENABLED=false
|
|
|
|
# ----------------------------------------------------------------------------
|
|
# Optional configuration settings
|
|
# ----------------------------------------------------------------------------
|
|
PUBLIC_REGISTRATION_ENABLED=true
|
|
IP_LOGGING_ENABLED=true
|
|
|
|
# Set the support email address which is shown to users in the main web app.
|
|
# Keep this blank if you don't want to show a support email.
|
|
SUPPORT_EMAIL=
|