## LINKACE CONFIGURATION ## Basic app configuration # The application name is used internally and may not be changed APP_NAME=LinkAce # The URL should be set if you APP_URL=http://localhost # The environment is usually 'production' but may be changed to 'local' for development APP_ENV=local # The app key is generated later, please leave it blank APP_KEY= # Enable the debug more if you are running into issues or while developing APP_DEBUG=true # Indicates that the setup was completed and the app can be used now SETUP_COMPLETED=false # Set the time after a session expires automatically, in minutes. Default is 7 days. SESSION_LIFETIME=10080 ## Backup configuration # Enable backups here BACKUP_ENABLED=false # Choose the destination of the backup. If you set up AWS S3 credentials below you may choose 'cloud' which is used # as a synonym for AWS. Leave blank or set to 'local' if you want to store backups within /storage/app/backups. BACKUP_DISK=cloud # Set to false if you do not want to be notified about successful or broken backups BACKUP_NOTIFICATIONS=true # The notification email may be used to get backup notifications, Mail must be configured for this to work! BACKUP_NOTIFICATION_EMAIL=your@email.com # Maximum size of the backups in megabytes BACKUP_MAX_SIZE=512 ## Amazon Web Services (AWS) S3 configuration # Define the key ID, the access key, the region and your bucket name here if you want to use AWS S3 for backups AWS_ACCESS_KEY_ID= AWS_SECRET_ACCESS_KEY= AWS_DEFAULT_REGION=us-east-1 AWS_BUCKET= ## Mail configuration # Set the driver used for sending email here, default is `smtp` MAIL_DRIVER=smtp # Set the SMTP host and its port here MAIL_HOST=smtp.mailtrap.io MAIL_PORT=2525 # Set the username used to connect to the SMTP server here MAIL_USERNAME=null # Set the password used to connect to the SMTP server here MAIL_PASSWORD=null # If your SMTP server uses encrypted connections, enable it here by setting the variable to `tls` MAIL_ENCRYPTION=null ## Configuration of the database connection ## Those settings are configured during the setup, please do not modify them now # Set the database driver (mysql, ) DB_CONNECTION=mysql # Set the host of your database here DB_HOST=127.0.0.1 # Set the port of your database here DB_PORT=3306 # Set the database name here DB_DATABASE=linkace # Set both username and password of the user accessing the database DB_USERNAME=linkace DB_PASSWORD=changeThisPassword ## Redis cache configuration # Set the Redis connection here if you want to use it REDIS_HOST=127.0.0.1 REDIS_PASSWORD=changeThisPassword REDIS_PORT=6379 ## You probably do not want to change any values blow. Only continue if you know what you are doing. # Configure various driver SESSION_DRIVER=file LOG_CHANNEL=stack BROADCAST_DRIVER=log CACHE_DRIVER=file QUEUE_DRIVER=database