2022-03-19 16:48:21 +01:00
#Email verification=Changes if users have to verify their email after registration.
2022-03-21 15:37:55 +01:00
#=REGISTER_AUTH either auth or verified. If auth is selected, no verification is required. Default is verified.
2023-02-17 13:19:02 +01:00
REGISTER_AUTH = auth
2023-04-26 15:44:39 +02:00
ALLOW_REGISTRATION = false
2022-03-19 16:48:21 +01:00
2022-05-04 10:12:01 +02:00
#Internal notifications=Changes if certain messages should be displayed or not.
2022-04-04 17:46:32 +02:00
#=NOTIFY_EVENTS notifies admins if an important event is happening, such as polls about the future of this project or security vulnerabilities.
2022-03-21 15:37:55 +01:00
NOTIFY_EVENTS = true
2022-05-28 15:54:34 +02:00
#=NOTIFY_UPDATES either true or false.
NOTIFY_UPDATES = true
2022-03-21 23:11:49 +01:00
DISPLAY_FOOTER = true
DISPLAY_CREDIT = true
2022-03-20 17:15:16 +01:00
2023-04-26 15:44:39 +02:00
SUPPORTED_DOMAINS = ""
2022-05-04 10:12:01 +02:00
#Home URL=Changes if a user profile should be displayed as the homepage.
2022-03-24 14:44:33 +01:00
#=Leave empty to use the default homepage. To set your profile as the homepage, enter a LittleLink name. You can find this on the user panel under the page setting, the name is what comes after the '@'.
#=(e.g. 'admin' without the '@')
HOME_URL =
2022-05-13 18:10:43 +02:00
#ALLOW_USER_HTML=Changes if users are able to use custom HTML in their descriptions. Allows for more customized texts.
2022-11-10 22:44:23 +01:00
#=Either true or false.
ALLOW_USER_HTML = true
2022-05-13 18:10:43 +02:00
2023-04-26 15:44:39 +02:00
#App Settings=Changes settings regarding your LinkStack installation. You probably only want to change the App Name setting.
2022-03-16 14:16:03 +01:00
#=App_Name changes the displayed name for the App in the title, for example.
2023-04-26 15:44:39 +02:00
APP_NAME = "LinkStack"
2022-05-20 11:59:16 +02:00
APP_KEY =
2023-04-26 15:44:39 +02:00
#=The APP_URL should be left empty under most circumstances. This setting is not required for LinkStack, and you should only change this if required for your setup.
2022-03-21 15:37:55 +01:00
APP_URL =
2022-03-16 14:16:03 +01:00
2022-05-04 10:12:01 +02:00
#ENABLE_BUTTON_EDITOR=Determines if the custom button editor should be enabled or not, default is true.
#=ENABLE_BUTTON_EDITOR either true or false.
ENABLE_BUTTON_EDITOR = true
#Debug Settings=Changes if your page should display a full error description instead of a generic error 500.
2022-03-16 14:16:03 +01:00
#=App_debug either true or false. You might want to change this to false after you're done installing, but it's very useful for troubleshooting.
2022-03-21 15:37:55 +01:00
APP_DEBUG = true
2022-05-04 10:12:01 +02:00
#=App_env either local or production. Change this to production if you set the value above to false.
2022-03-21 15:37:55 +01:00
APP_ENV = local
LOG_CHANNEL = stack
LOG_LEVEL = debug
2022-08-08 14:27:00 +02:00
#=Disables all routes and displays a Maintenance placeholder page.
MAINTENANCE_MODE = false
2022-03-16 14:16:03 +01:00
#Database Settings=Should be left alone. If you wish to use mysql you'd have to seed the database again.
2022-03-21 15:37:55 +01:00
DB_CONNECTION = sqlite
2022-03-16 14:16:03 +01:00
2023-04-26 15:44:39 +02:00
#Mail Settings=LinkStack comes with a free to use built-in SMTP server for sending mail. You can leave this setting as is, if you wish to use this service please read our terms and conditions at llc-mail.tru.io. If you do not wish to use the built-in SMTP server, change the setting below.
2022-03-21 15:37:55 +01:00
#=MAIL_MAILER either smtp or built-in. Make sure to change this setting if you want to add a custom SMTP server.
MAIL_MAILER = built-in
MAIL_HOST =
MAIL_PORT =
MAIL_USERNAME =
MAIL_PASSWORD =
MAIL_ENCRYPTION =
MAIL_FROM_ADDRESS =
2022-03-21 16:10:21 +01:00
MAIL_FROM_NAME = " ${ APP_NAME } "
2022-03-16 14:16:03 +01:00
2022-05-04 10:12:01 +02:00
#Cache Settings=Completely optional.
2022-03-21 15:37:55 +01:00
MEMCACHED_HOST = 127.0.0.1
REDIS_HOST = 127.0.0.1
REDIS_PASSWORD = null
REDIS_PORT = 6379
2022-03-16 14:16:03 +01:00
#Miscellaneous Settings=Should be left alone if you don't know what you're doing.
2022-03-21 15:37:55 +01:00
BROADCAST_DRIVER = log
CACHE_DRIVER = file
QUEUE_CONNECTION = sync
SESSION_DRIVER = file
SESSION_LIFETIME = 120
2022-05-28 16:17:20 +02:00
2022-06-01 18:53:22 +02:00
#Updater Settings=Changes settings regarding the built-in updater.
#=JOIN_BETA either true or false. Learn more about this setting at llc.bio/beta.
JOIN_BETA = false
#=SKIP_UPDATE_BACKUP either true or false. Skips backup before updating. Use at your own risk.
2022-06-10 15:32:04 +02:00
SKIP_UPDATE_BACKUP = false
#=CUSTOM_META_TAGS either true or false. Used to enable setting in advanced config file (config/advanced-config.php).
#=You can read more about this config at https://llc.bio/advanced-config.
2022-06-30 10:39:40 +02:00
CUSTOM_META_TAGS = false
2022-07-05 00:07:36 +02:00
#=FORCE_HTTPS either true or false. Used to redirect any request to HTTPS.
#=Note that this will only affect port 443 if you are using the docker image.
2022-09-10 11:15:40 +02:00
FORCE_HTTPS = false
#=Defines wether or not themes are allowed to inject custom code.
#=Themes V2 can now implement fully custom code which you might want to disable for security reasons.
2022-09-13 19:44:47 +02:00
ALLOW_CUSTOM_CODE_IN_THEMES = true
#ENABLE_THEME_UPDATER=Determines if the theme updater should be enabled or not, default is true.
#=ENABLE_THEME_UPDATER either true or false.
2022-11-09 08:06:30 +01:00
ENABLE_THEME_UPDATER = true
#Needs to be configured first.
#Read more at: https://s.llc.ovh/social-login
ENABLE_SOCIAL_LOGIN = false
#Sets if a plain PNG or iframe should be used for the theme preview image
USE_THEME_PREVIEW_IFRAME = true
2022-11-20 14:10:49 +01:00
#Redirects all pages to https
2023-01-09 18:08:45 +01:00
FORCE_ROUTE_HTTPS = false
2023-01-09 18:13:59 +01:00
2023-01-09 18:07:30 +01:00
DISPLAY_FOOTER_HOME = true
DISPLAY_FOOTER_TERMS = true
DISPLAY_FOOTER_PRIVACY = true
DISPLAY_FOOTER_CONTACT = true
TITLE_FOOTER_HOME = "Home"
TITLE_FOOTER_TERMS = "Terms"
TITLE_FOOTER_PRIVACY = "Privacy"
TITLE_FOOTER_CONTACT = "Contact"
HOME_FOOTER_LINK = ""
2023-02-13 14:18:53 +01:00
2023-02-15 19:00:03 +01:00
HIDE_VERIFICATION_CHECKMARK = false
2023-02-17 13:19:02 +01:00
ALLOW_CUSTOM_BACKGROUNDS = true
2023-03-08 17:46:40 +01:00
ALLOW_USER_EXPORT = true
2023-04-26 15:44:39 +02:00
ALLOW_USER_IMPORT = true
MANUAL_USER_VERIFICATION = true