You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# Trusted proxies: `*` (default) trusts X-Forwarded-* from the TCP peer (typical Herd/Valet/nginx). For production, set your load balancer IPs/CIDRs as a comma-separated list.
8
+
# TRUSTED_PROXIES=*
8
9
9
10
LOG_CHANNEL=stack
10
-
LOG_STACK=single,flare
11
+
LOG_STACK=single,nightwatch
11
12
LOG_DEPRECATIONS_CHANNEL=null
12
13
LOG_LEVEL=debug
13
14
14
-
FLARE_KEY=
15
+
# Nightwatch is required for production-style deployments: set NIGHTWATCH_TOKEN, enable the agent (`php artisan nightwatch:agent`, supervised), and keep LOG_STACK including `nightwatch`.
16
+
NIGHTWATCH_ENABLED=false
17
+
NIGHTWATCH_TOKEN=
15
18
16
-
DB_CONNECTION=mysql
17
-
DB_HOST=127.0.0.1
18
-
DB_PORT=3306
19
-
DB_DATABASE=laravel-template
20
-
DB_USERNAME=root
21
-
DB_PASSWORD=
19
+
# No content database is needed (content is markdown). Leave SQLite as a stub for cache/jobs if you opt into the database driver for those.
20
+
DB_CONNECTION=sqlite
22
21
23
22
FPH_ENABLED=true
24
23
CSP_ENABLED=true
25
24
26
-
SESSION_DRIVER=database
25
+
CACHE_STORE=file
26
+
SESSION_DRIVER=file
27
27
SESSION_LIFETIME=120
28
28
SESSION_ENCRYPT=false
29
29
SESSION_PATH=/
30
-
SESSION_DOMAIN=laravel-template-l11.test
30
+
SESSION_DOMAIN=
31
31
32
32
BROADCAST_CONNECTION=log
33
33
FILESYSTEM_DISK=local
34
34
QUEUE_CONNECTION=sync
35
35
36
+
# Markdown content cache (see config/content.php).
37
+
CONTENT_CACHE_TTL=3600
38
+
39
+
# Postmark for transactional mail.
36
40
MAIL_MAILER=log
37
-
MAIL_HOST=localhost
38
-
MAIL_PORT=2525
39
-
MAIL_USERNAME="Template Laravel"
40
-
MAIL_PASSWORD=null
41
-
MAIL_ENCRYPTION=null
41
+
POSTMARK_TOKEN=
42
42
43
-
MAIL_FROM_ADDRESS="test@template.com"
43
+
MAIL_FROM_ADDRESS="hello@codebar.ch"
44
44
MAIL_FROM_NAME="${APP_NAME}"
45
45
46
+
# Lasso (deployment asset bundling) uses the `s3` disk (`AWS_*`). Set LASSO_ENV to match production (e.g. production).
0 commit comments