Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .env.dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,15 @@ APP_KEY=someRandomStringWith32Characters
APP_DEBUG=true
APP_DEMO=false

# The URL under which LinkAce is accessible, e.g. https://links.example.com
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=*

## Database configuration
DB_CONNECTION=mysql
DB_HOST=db
Expand Down
10 changes: 10 additions & 0 deletions .env.docker.production
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@
# 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=mysql
Expand Down
3 changes: 1 addition & 2 deletions .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@ APP_URL=http://localhost
# 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).
# Leave empty if LinkAce is accessed directly without a reverse proxy.
TRUSTED_PROXIES=
TRUSTED_PROXIES=*

## Configuration of the database connection
## Attention: Those settings are configured during the web setup, please do not modify them now.
Expand Down
10 changes: 10 additions & 0 deletions .env.sqlite.production
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@
# 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
Expand Down
Loading