-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
350 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
APP_ENV=production | ||
APP_DEBUG=false | ||
|
||
# The encryption key. Must be 32 characters long exactly. | ||
# Use `echo -n 'base64:'; openssl rand -base64 32` to generate a random key. | ||
# APP_KEY= | ||
|
||
# The URL of your application. | ||
APP_URL=http://localhost | ||
|
||
# Set trusted proxy IP addresses. | ||
# To trust all proxies that connect directly to your server, use a "*". | ||
APP_TRUSTED_PROXIES= | ||
|
||
# Database information | ||
DB_CONNECTION=mysql | ||
DB_HOST=db | ||
DB_DATABASE=monica | ||
DB_USERNAME=monica | ||
DB_PASSWORD=secret | ||
|
||
# Mail credentials used to send emails from the application. | ||
MAIL_DRIVER=smtp | ||
MAIL_HOST=smtp.domain.com | ||
MAIL_PORT=587 | ||
MAIL_USERNAME=username | ||
MAIL_PASSWORD=password | ||
MAIL_ENCRYPTION=tls | ||
# Outgoing emails will be sent with these identity | ||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME="Monica instance" | ||
|
||
LOG_CHANNEL=stderr | ||
|
||
CACHE_DRIVER=database | ||
SESSION_DRIVER=database | ||
QUEUE_DRIVER=sync | ||
|
||
DEFAULT_MAX_UPLOAD_SIZE=500000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
APP_ENV=production | ||
APP_DEBUG=false | ||
|
||
# The encryption key. Must be 32 characters long exactly. | ||
# Use `echo -n 'base64:'; openssl rand -base64 32` to generate a random key. | ||
# APP_KEY= | ||
|
||
# The URL of your application. | ||
APP_URL=https://localhost | ||
|
||
# Set trusted proxy IP addresses. | ||
# To trust all proxies that connect directly to your server, use a "*". | ||
APP_TRUSTED_PROXIES=* | ||
|
||
# Database information | ||
DB_CONNECTION=mysql | ||
DB_HOST=db | ||
DB_DATABASE=monica | ||
DB_USERNAME=monica | ||
DB_PASSWORD=secret | ||
|
||
# Mail credentials used to send emails from the application. | ||
MAIL_DRIVER=smtp | ||
MAIL_HOST=smtp.domain.com | ||
MAIL_PORT=587 | ||
MAIL_USERNAME=username | ||
MAIL_PASSWORD=password | ||
MAIL_ENCRYPTION=tls | ||
# Outgoing emails will be sent with these identity | ||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME="Monica instance" | ||
|
||
LOG_CHANNEL=stderr | ||
|
||
CACHE_DRIVER=redis | ||
SESSION_DRIVER=database | ||
QUEUE_DRIVER=redis | ||
REDIS_HOST=redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
APP_ENV=production | ||
APP_DEBUG=false | ||
|
||
# The encryption key. Must be 32 characters long exactly. | ||
# Use `echo -n 'base64:'; openssl rand -base64 32` to generate a random key. | ||
# APP_KEY= | ||
|
||
# The URL of your application. | ||
APP_URL=http://localhost | ||
|
||
# Set trusted proxy IP addresses. | ||
# To trust all proxies that connect directly to your server, use a "*". | ||
APP_TRUSTED_PROXIES= | ||
|
||
# Database information | ||
DB_CONNECTION=mysql | ||
DB_HOST=db | ||
DB_DATABASE=monica | ||
DB_USERNAME=monica | ||
DB_PASSWORD=secret | ||
|
||
# Mail credentials used to send emails from the application. | ||
MAIL_DRIVER=smtp | ||
MAIL_HOST=smtp.domain.com | ||
MAIL_PORT=587 | ||
MAIL_USERNAME=username | ||
MAIL_PASSWORD=password | ||
MAIL_ENCRYPTION=tls | ||
# Outgoing emails will be sent with these identity | ||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME="Monica instance" | ||
|
||
LOG_CHANNEL=stderr | ||
|
||
CACHE_DRIVER=redis | ||
SESSION_DRIVER=database | ||
QUEUE_DRIVER=redis | ||
REDIS_HOST=redis |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,37 @@ | ||
APP_KEY=app_key | ||
APP_URL="raspberrypi.local:8080" | ||
APP_ENV=production | ||
APP_DEBUG=false | ||
|
||
# The encryption key. Must be 32 characters long exactly. | ||
# Use `echo -n 'base64:'; openssl rand -base64 32` to generate a random key. | ||
# APP_KEY= | ||
|
||
# The URL of your application. | ||
APP_URL=http://localhost | ||
|
||
# Set trusted proxy IP addresses. | ||
# To trust all proxies that connect directly to your server, use a "*". | ||
APP_TRUSTED_PROXIES= | ||
|
||
# Database information | ||
DB_CONNECTION=mysql | ||
DB_HOST=db | ||
DB_DATABASE=monica | ||
DB_USERNAME=monica | ||
DB_PASSWORD=secret | ||
|
||
MAIL_MAILER=smtp | ||
# Mail credentials used to send emails from the application. | ||
MAIL_DRIVER=smtp | ||
MAIL_HOST=smtp.domain.com | ||
MAIL_PORT=587 | ||
MAIL_USERNAME=username | ||
MAIL_PASSWORD=password | ||
MAIL_ENCRYPTION=tls | ||
# Outgoing emails will be sent with these identity | ||
MAIL_FROM_ADDRESS=[email protected] | ||
MAIL_FROM_NAME=Monica | ||
MAIL_FROM_NAME="Monica instance" | ||
|
||
LOG_CHANNEL=stderr | ||
|
||
CACHE_DRIVER=database | ||
SESSION_DRIVER=database | ||
QUEUE_DRIVER=sync |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
version: "3.4" | ||
version: "3.9" | ||
|
||
services: | ||
app: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.