-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy path.env.local.production
More file actions
36 lines (31 loc) · 1.4 KB
/
Copy path.env.local.production
File metadata and controls
36 lines (31 loc) · 1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
## LINKACE CONFIGURATION
## with very basic settings for a local setup on a plain PHP web server
## Basic app configuration
# The app key is generated later, please leave it like that
APP_KEY=someRandomStringWith32Characters
# The URL under which LinkAce is accessible, e.g. https://links.example.com
# Used when generating links in emails and other notifications
APP_URL=http://localhost
## Trusted Proxies and Hosts
# Set to the IP of your reverse proxy if running behind one (e.g. nginx, Traefik).
# Use a comma-separated list for multiple proxies: 192.168.1.1,10.0.0.1
# Use * to trust the immediate upstream connection (any single reverse proxy).
TRUSTED_PROXIES=*
## Configuration of the database connection
## Attention: Those settings are configured during the web setup, please do not modify them now.
# Set the database driver (mysql, pgsql, sqlsrv, sqlite)
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
# Wrap your password into quotes (") if it contains special characters
DB_PASSWORD=ChangeThisToASecurePassword!
## Optional external search configuration
# Keep "database" to use LinkAce's built-in database search.
# Supported values: database, meilisearch, typesense
APP_SEARCH_DRIVER=database