simple-login/example.env

168 lines
4.7 KiB
Bash
Raw Normal View History

# Server url
2019-08-17 10:26:37 +00:00
URL=http://localhost:7777
2019-12-16 17:30:17 +00:00
# If you want to enable sentry for error tracking, put your sentry dsn here.
# SENTRY_DSN=your_sentry_dsn
2019-07-22 10:14:02 +00:00
# Possible to use another sentry project for the front-end to avoid noises
# If not set, fallback to SENTRY_DSN
# SENTRY_FRONT_END_DSN=your_sentry_dsn
2019-12-16 17:36:59 +00:00
# apply colored log to facilitate local development
# COLOR_LOG=true
# <<< Email related settings >>>
2019-12-16 17:36:59 +00:00
# Only print email content, not sending it, for local development
# NOT_SEND_EMAIL=true
# domain used to create alias
EMAIL_DOMAIN=sl.local
2019-12-16 17:36:59 +00:00
2020-05-07 11:28:04 +00:00
# Allow SimpleLogin to enforce SPF by using the extra headers from postfix
ENFORCE_SPF=true
# other domains that can be used to create aliases, in addition to EMAIL_DOMAIN
OTHER_ALIAS_DOMAINS=["domain1.com", "domain2.com"]
2020-05-25 17:51:30 +00:00
# domains that can be used to create aliases. If set, override OTHER_ALIAS_DOMAINS
ALIAS_DOMAINS=["domain1.com", "domain2.com"]
2020-10-15 14:01:44 +00:00
# (optional) domains that are only available to premium accounts
PREMIUM_ALIAS_DOMAINS=["premium.com"]
2020-04-15 20:36:50 +00:00
# the alias domain used when creating the first alias for user, default to EMAIL_DOMAIN if not set
# FIRST_ALIAS_DOMAIN = another-domain.com
# transactional email is sent from this email address
SUPPORT_EMAIL=support@sl.local
2020-01-28 02:29:04 +00:00
SUPPORT_NAME=Son from SimpleLogin
2020-06-10 11:54:42 +00:00
# in case sender is different than SUPPORT_EMAIL
SENDER=sender@sl.local
# all emails sent to sender are stored in this folder
SENDER_DIR=/tmp
2019-12-16 17:36:59 +00:00
# to receive general stats.
# ADMIN_EMAIL=admin@sl.local
2019-07-22 10:14:02 +00:00
# Max number emails user can generate for free plan
MAX_NB_EMAIL_FREE_PLAN=5
# Close registration. Avoid people accidentally creating new account on a self-hosted SimpleLogin
# DISABLE_REGISTRATION=1
2019-12-16 17:40:23 +00:00
# custom domain needs to point to these MX servers
EMAIL_SERVERS_WITH_PRIORITY=[(10, "email.hostname.")]
2019-12-16 17:40:23 +00:00
# these emails are ignored when computing stats
2019-12-16 17:40:23 +00:00
# IGNORED_EMAILS = ["my_email@domain.com"]
# By default, new aliases must end with ".{random_word}". This is to avoid a person taking all "nice" aliases.
# this option doesn't make sense in self-hosted. Set this variable to disable this option.
# DISABLE_ALIAS_SUFFIX=1
# If you want to use another MTA to send email, you could set the address of your MTA here
# By default, emails are sent using the the same Postfix server that receives emails
# POSTFIX_SERVER=my-postfix.com
# the DKIM private key used to compute DKIM-Signature
DKIM_PRIVATE_KEY_PATH=local_data/dkim.key
2019-12-27 22:44:32 +00:00
# the DKIM public key used to setup custom domain DKIM
DKIM_PUBLIC_KEY_PATH=local_data/dkim.pub.key
2019-12-16 17:40:23 +00:00
# <<< END Email related settings >>>
2019-07-22 10:14:02 +00:00
# <<< Database >>>
2019-12-16 17:40:23 +00:00
# delete and recreate sqlite database, for local development
# RESET_DB=true
2019-12-16 17:40:23 +00:00
# DB Connection
2019-12-18 16:10:10 +00:00
# Local SQLite database
DB_URI=sqlite:///db.sqlite
2019-12-18 16:10:10 +00:00
# Postgres
# DB_URI=postgresql://myuser:mypassword@sl-db:5432/simplelogin
2019-12-16 17:40:23 +00:00
# <<< END Database >>>
2019-07-22 10:14:02 +00:00
# Flask
FLASK_SECRET=secret
2019-12-16 17:40:23 +00:00
# <<< AWS >>>
BUCKET=to_fill
2019-07-06 14:39:45 +00:00
AWS_ACCESS_KEY_ID=to_fill
AWS_SECRET_ACCESS_KEY=to_fill
# Cloudwatch
# ENABLE_CLOUDWATCH=true
2019-12-27 10:48:57 +00:00
# CLOUDWATCH_LOG_GROUP=local
# CLOUDWATCH_LOG_STREAM=local
2019-12-16 17:40:23 +00:00
# <<< END AWS >>>
# Paddle
2020-03-08 09:27:26 +00:00
PADDLE_VENDOR_ID=123
PADDLE_MONTHLY_PRODUCT_ID=123
PADDLE_YEARLY_PRODUCT_ID=123
2019-12-14 18:54:33 +00:00
PADDLE_PUBLIC_KEY_PATH=local_data/paddle.key.pub
2020-03-08 09:27:26 +00:00
PADDLE_AUTH_CODE=123
2019-07-22 10:14:02 +00:00
# OpenId key
OPENID_PRIVATE_KEY_PATH=local_data/jwtRS256.key
OPENID_PUBLIC_KEY_PATH=local_data/jwtRS256.key.pub
2019-07-06 14:39:45 +00:00
2019-07-22 10:14:02 +00:00
# Words to generate random email alias
WORDS_FILE_PATH=local_data/words.txt
2019-07-22 10:14:02 +00:00
# Github
GITHUB_CLIENT_ID=to_fill
GITHUB_CLIENT_SECRET=to_fill
# Google
GOOGLE_CLIENT_ID=to_fill
GOOGLE_CLIENT_SECRET=to_fill
# Facebook
FACEBOOK_CLIENT_ID=to_fill
FACEBOOK_CLIENT_SECRET=to_fill
# Flask profiler
# FLASK_PROFILER_PATH=/tmp/flask-profiler.sql
2020-03-08 10:54:59 +00:00
# FLASK_PROFILER_PASSWORD=password
# Where to store GPG Keyring
# GNUPGHOME=/tmp/gnupg
2020-03-13 13:37:48 +00:00
# By default, files are uploaded to s3
# Set this variable to use the local "static/upload/" directory instead
2020-04-09 20:18:03 +00:00
# LOCAL_FILE_UPLOAD=true
# The landing page
2020-04-18 18:47:11 +00:00
# LANDING_PAGE_URL=https://simplelogin.io
2020-08-12 14:12:41 +00:00
# The status page
# STATUS_PAGE_URL=https://status.simplelogin.io
2020-04-18 18:47:11 +00:00
# Used when querying info on Apple API
2020-04-29 13:47:03 +00:00
# APPLE_API_SECRET=secret
2020-05-10 12:43:41 +00:00
# MACAPP_APPLE_API_SECRET=secret
# Disable onboarding emails
# For self-hosted instance
2020-05-21 18:42:25 +00:00
DISABLE_ONBOARDING=true
# By default use postfix port 25. This param is used to override the Postfix port,
# useful when using another SMTP server when developing locally
# POSTFIX_PORT=1025
# set the 2 below variables to enable hCaptcha
# HCAPTCHA_SECRET=very_long_string
2020-08-12 13:24:34 +00:00
# HCAPTCHA_SITEKEY=00000000-0000-0000-0000-000000000000
# Set the 2 below variables to enable Plausible Analytics
# PLAUSIBLE_HOST=https://plausible.io
2020-08-15 14:33:48 +00:00
# PLAUSIBLE_DOMAIN=yourdomain.com
# Spamassassin server
# SPAMASSASSIN_HOST = 127.0.0.1
# if set, used to sign the forwarding emails
# PGP_SENDER_PRIVATE_KEY_PATH=local_data/private-pgp.asc