-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path.env.webhost.example
More file actions
60 lines (52 loc) · 1.74 KB
/
Copy path.env.webhost.example
File metadata and controls
60 lines (52 loc) · 1.74 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# b10cks CMS on a traditional webhost (shared hosting).
# Copy to .env, fill in the database credentials, then open
# https://your-domain.example/setup
# in the browser to run the installer (or run: php artisan b10cks:setup).
#
# Point the web root of your domain at the public/ directory and add ONE cron
# job (it drives the scheduler and the queue):
# * * * * * php /path/to/b10cks/artisan schedule:run
APP_NAME="b10cks CMS"
APP_ENV=production
# Generated automatically by the installer when left empty.
APP_KEY=
APP_DEBUG=false
APP_URL=https://your-domain.example
B10CKS_EDITION=self-hosted
# shared = no admin database privileges needed: spaces live in the main
# database behind per-space table prefixes.
B10CKS_INSTALL_PROFILE=shared
# mysql (default) or sqlite (one file per space; needs the pdo_sqlite
# extension, which not every shared host provides).
B10CKS_SPACE_DB_DRIVER=mysql
# Open self-registration. Unset: open only until the first account exists,
# then invite-only. Set true to keep it open, false to force invite-only.
#B10CKS_ALLOW_REGISTRATION=
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=
DB_USERNAME=
DB_PASSWORD=
QUEUE_CONNECTION=database
SESSION_DRIVER=database
CACHE_STORE=database
BROADCAST_DRIVER=null
FILESYSTEM_DISK=local
TRANSFERS_DISK_DRIVER=local
# AI (optional): one platform key shared by all spaces; empty disables AI.
AI_MODE=single
OPENROUTER_API_KEY=
MAIL_MAILER=smtp
MAIL_HOST=
MAIL_PORT=587
MAIL_USERNAME=
MAIL_PASSWORD=
MAIL_FROM_ADDRESS=no-reply@your-domain.example
MAIL_FROM_NAME="${APP_NAME}"
# Mail footer imprint (optional; rendered when company is set)
#B10CKS_IMPRINT_COMPANY=
#B10CKS_IMPRINT_ADDRESS=
#B10CKS_IMPRINT_NOTICE=
# Behind the host's reverse proxy, usually required:
TRUSTED_PROXIES=*