-
-
Notifications
You must be signed in to change notification settings - Fork 205
Expand file tree
/
Copy path.env.sqlite.production
More file actions
22 lines (18 loc) · 894 Bytes
/
Copy path.env.sqlite.production
File metadata and controls
22 lines (18 loc) · 894 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
## LINKACE CONFIGURATION
## for a production-ready setup with Docker and SQLite only
## 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
# Set the database driver (mysql, pgsql, sqlsrv, sqlite)
DB_CONNECTION=sqlite
# Set the database name (MySQL, Postgres,...) or path (SQLite) here
DB_DATABASE=/app/database/database.sqlite