2020-01-13 15:22:25 +01:00
|
|
|
# You can change the name of the app
|
|
|
|
|
|
|
|
APP_NAME=2FAuth
|
|
|
|
|
|
|
|
|
|
|
|
# You can leave this on "local". If you change it to production most console commands will ask for extra confirmation.
|
|
|
|
# Never set it to "testing".
|
|
|
|
|
|
|
|
APP_ENV=local
|
|
|
|
|
|
|
|
|
|
|
|
# Set to true if you want to see debug information in error screens.
|
|
|
|
|
|
|
|
APP_DEBUG=false
|
|
|
|
|
|
|
|
|
|
|
|
# This should be your email address
|
|
|
|
|
|
|
|
SITE_OWNER=mail@example.com
|
|
|
|
|
|
|
|
|
|
|
|
# The encryption key for your database and sessions. Keep this very secure.
|
|
|
|
# If you generate a new one all existing data must be considered LOST.
|
|
|
|
# Change it to a string of exactly 32 chars or use command `php artisan key:generate` to generate it
|
|
|
|
|
|
|
|
APP_KEY=SomeRandomStringOf32CharsExactly
|
|
|
|
|
|
|
|
|
|
|
|
# This variable must match your installation's external address but keep in mind that
|
|
|
|
# it's only used on the command line as a fallback value.
|
|
|
|
|
|
|
|
APP_URL=http://localhost
|
|
|
|
|
|
|
|
|
2023-01-25 16:58:30 +01:00
|
|
|
# The domain subdirectory from which you want to serve 2FAuth.
|
|
|
|
# This must reflect the path targeted by APP_URL.
|
|
|
|
#
|
|
|
|
# For example, if you set APP_URL=https://mydomain.org/2fa to access 2FAuth from the '/2fa/' subdirectory
|
|
|
|
# you have to set APP_SUBDIRECTORY=2fa
|
|
|
|
#
|
|
|
|
# Leave blank if you serve 2FAuth from the domain root.
|
|
|
|
|
|
|
|
APP_SUBDIRECTORY=
|
|
|
|
|
|
|
|
|
2020-03-18 18:37:57 +01:00
|
|
|
# Turn this to true if you want your app to react like a demo.
|
|
|
|
# The Demo mode reset the app content every hours and set a generic demo user.
|
|
|
|
|
|
|
|
IS_DEMO_APP=false
|
|
|
|
|
|
|
|
|
2020-01-13 15:22:25 +01:00
|
|
|
# The log channel defines where your log entries go to.
|
2021-10-15 23:46:21 +02:00
|
|
|
# 'daily' is the default logging mode giving you 7 daily rotated log files in /storage/logs/.
|
2020-01-13 15:22:25 +01:00
|
|
|
# Several other options exist. You can use 'single' for one big fat error log (not recommended).
|
|
|
|
# Also available are 'syslog', 'errorlog' and 'stdout' which will log to the system itself.
|
|
|
|
|
|
|
|
LOG_CHANNEL=daily
|
|
|
|
|
|
|
|
|
|
|
|
# Log level. You can set this from least severe to most severe:
|
|
|
|
# debug, info, notice, warning, error, critical, alert, emergency
|
|
|
|
# If you set it to debug your logs will grow large, and fast. If you set it to emergency probably
|
|
|
|
# nothing will get logged, ever.
|
|
|
|
|
2022-07-21 15:44:58 +02:00
|
|
|
LOG_LEVEL=notice
|
2020-01-13 15:22:25 +01:00
|
|
|
|
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
# If you're looking for performance improvements, you could install memcached.
|
|
|
|
|
|
|
|
CACHE_DRIVER=file
|
|
|
|
SESSION_DRIVER=file
|
|
|
|
FILESYSTEM_DRIVER=local
|
|
|
|
|
|
|
|
|
|
|
|
#### Database config & credentials ####
|
2020-01-13 15:22:25 +01:00
|
|
|
|
|
|
|
DB_CONNECTION=sqlite
|
|
|
|
DB_DATABASE="path/to/your/database.sqlite"
|
|
|
|
|
|
|
|
# or if you want to use SQL (uncomment lines)
|
|
|
|
|
|
|
|
# DB_CONNECTION=mysql
|
|
|
|
# DB_HOST=127.0.0.1
|
|
|
|
# DB_PORT=3306
|
|
|
|
# DB_DATABASE=homestead
|
|
|
|
# DB_USERNAME=homestead
|
|
|
|
# DB_PASSWORD=secret
|
|
|
|
|
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
#### Mail settings ####
|
2020-01-13 15:22:25 +01:00
|
|
|
|
2020-02-10 23:23:15 +01:00
|
|
|
# Refer your email provider documentation to configure your mail settings
|
|
|
|
# Set a value for every available setting to avoid issue
|
|
|
|
|
2020-01-13 15:22:25 +01:00
|
|
|
MAIL_DRIVER=log
|
|
|
|
MAIL_HOST=smtp.mailtrap.io
|
|
|
|
MAIL_PORT=2525
|
|
|
|
MAIL_FROM=changeme@example.com
|
|
|
|
MAIL_USERNAME=null
|
|
|
|
MAIL_PASSWORD=null
|
|
|
|
MAIL_ENCRYPTION=null
|
2020-02-10 23:23:15 +01:00
|
|
|
MAIL_FROM_NAME=null
|
|
|
|
MAIL_FROM_ADDRESS=null
|
2020-01-13 15:22:25 +01:00
|
|
|
|
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
#### Authentication settings ####
|
|
|
|
|
|
|
|
# The default authentication guard
|
|
|
|
#
|
|
|
|
# Supported:
|
|
|
|
# 'web-guard' : The Laravel built-in auth system (default if nulled)
|
|
|
|
# 'reverse-proxy-guard' : When 2FAuth is deployed behind a reverse-proxy that handle authentication
|
|
|
|
#
|
|
|
|
# WARNING
|
2022-03-31 09:36:12 +02:00
|
|
|
# When using 'reverse-proxy-guard' 2FAuth only look for the dedicated headers and skip all other built-in
|
|
|
|
# authentication checks. That means your proxy is fully responsible of the authentication process, 2FAuth will
|
|
|
|
# trust him as long as headers are presents.
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-05-10 12:52:05 +02:00
|
|
|
AUTHENTICATION_GUARD=web-guard
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
# Name of the HTTP headers sent by the reverse proxy that identifies the authenticated user at proxy level.
|
|
|
|
# Check your proxy documentation to find out how these headers are named (i.e 'REMOTE_USER', 'REMOTE_EMAIL', etc...)
|
|
|
|
# (only relevant when AUTHENTICATION_GUARD is set to 'reverse-proxy-guard')
|
|
|
|
|
2022-05-17 00:16:59 +02:00
|
|
|
AUTH_PROXY_HEADER_FOR_USER=null
|
|
|
|
AUTH_PROXY_HEADER_FOR_EMAIL=null
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2022-05-17 00:16:59 +02:00
|
|
|
# Custom logout URL to open when using an auth proxy.
|
|
|
|
|
|
|
|
PROXY_LOGOUT_URL=null
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
#### WebAuthn settings ####
|
|
|
|
|
2022-08-10 11:39:17 +02:00
|
|
|
# Relying Party name, aka the name of the application.
|
|
|
|
# If blank, defaults to APP_NAME. Do not set to null.
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-08-10 11:39:17 +02:00
|
|
|
WEBAUTHN_NAME=2FAuth
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
# Relying Party ID. If null, the device will fill it internally.
|
|
|
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#how-to-determine-the-relying-party-id
|
|
|
|
|
2022-05-17 00:16:59 +02:00
|
|
|
WEBAUTHN_ID=null
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
# [DEPRECATED]
|
2022-03-24 15:08:03 +01:00
|
|
|
# Optional image data in BASE64 (128 bytes maximum) or an image url
|
|
|
|
# See https://webauthn-doc.spomky-labs.com/pre-requisites/the-relying-party#relying-party-icon
|
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
# WEBAUTHN_ICON=null
|
|
|
|
# [/DEPRECATED]
|
|
|
|
|
2022-03-24 15:08:03 +01:00
|
|
|
|
|
|
|
# Use this setting to control how user verification behave during the
|
|
|
|
# WebAuthn authentication flow.
|
|
|
|
#
|
|
|
|
# Most authenticators and smartphones will ask the user to actively verify
|
|
|
|
# themselves for log in. For example, through a touch plus pin code,
|
|
|
|
# password entry, or biometric recognition (e.g., presenting a fingerprint).
|
|
|
|
# The intent is to distinguish one user from any other.
|
|
|
|
#
|
|
|
|
# Supported:
|
|
|
|
# 'required': Will ALWAYS ask for user verification
|
|
|
|
# 'preferred' (default) : Will ask for user verification IF POSSIBLE
|
|
|
|
# 'discouraged' : Will NOT ask for user verification (for example, to minimize disruption to the user interaction flow)
|
|
|
|
|
2022-05-17 00:16:59 +02:00
|
|
|
WEBAUTHN_USER_VERIFICATION=preferred
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2022-04-14 11:34:40 +02:00
|
|
|
# Use this setting to declare trusted proxied.
|
|
|
|
# Supported:
|
|
|
|
# '*': to trust any proxy
|
|
|
|
# A comma separated IP list: The list of proxies IP to trust
|
|
|
|
|
2022-05-17 00:16:59 +02:00
|
|
|
TRUSTED_PROXIES=null
|
2022-03-24 15:08:03 +01:00
|
|
|
|
2022-11-14 17:13:24 +01:00
|
|
|
|
2020-01-13 15:22:25 +01:00
|
|
|
# Leave the following configuration vars as is.
|
|
|
|
# Unless you like to tinker and know what you're doing.
|
|
|
|
|
|
|
|
BROADCAST_DRIVER=log
|
|
|
|
QUEUE_DRIVER=sync
|
|
|
|
|
|
|
|
REDIS_HOST=127.0.0.1
|
|
|
|
REDIS_PASSWORD=null
|
|
|
|
REDIS_PORT=6379
|
|
|
|
|
|
|
|
PUSHER_APP_ID=
|
|
|
|
PUSHER_APP_KEY=
|
|
|
|
PUSHER_APP_SECRET=
|
|
|
|
PUSHER_APP_CLUSTER=mt1
|
|
|
|
|
|
|
|
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
|
|
|
|
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
|
|
|
|
|
|
|
|
MIX_ENV=local
|