-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
72 lines (54 loc) · 1.86 KB
/
.env.example
File metadata and controls
72 lines (54 loc) · 1.86 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
61
62
63
64
65
66
67
68
69
70
71
72
# TFGrid WordPress Configuration
# Copy this file to .env and customize
#
# NOTE: Most users should use interactive mode instead:
# tfgrid-compose up tfgrid-wordpress -i
# ============================================
# DOMAIN & SSL (Required)
# ============================================
# Required: Public domain for WordPress
DOMAIN=blog.example.com
# Optional: Email for Let's Encrypt SSL certificates
SSL_EMAIL=admin@example.com
# ============================================
# DNS AUTOMATION (Optional)
# ============================================
# Automatically create DNS A records pointing to your server
# Options: manual, name.com, namecheap, cloudflare
DNS_PROVIDER=manual
# Name.com credentials (if DNS_PROVIDER=name.com)
# NAMECOM_USERNAME=your-username
# NAMECOM_API_TOKEN=your-api-token
# Namecheap credentials (if DNS_PROVIDER=namecheap)
# NAMECHEAP_API_USER=your-username
# NAMECHEAP_API_KEY=your-api-key
# Cloudflare credentials (if DNS_PROVIDER=cloudflare)
# CLOUDFLARE_API_TOKEN=your-api-token
# ============================================
# WORDPRESS SETTINGS
# ============================================
# Admin account
WP_ADMIN_USER=admin
WP_ADMIN_EMAIL=admin@example.com
# Site settings
WP_SITE_TITLE=My WordPress Site
WP_LOCALE=en_US
# ============================================
# PERFORMANCE
# ============================================
# PHP settings
PHP_MEMORY_LIMIT=256M
PHP_UPLOAD_MAX=64M
# Debug mode (set to true for development)
WP_DEBUG=false
# ============================================
# DATABASE
# ============================================
# Database passwords (auto-generated if not set)
# DB_PASSWORD=your-secure-password
# DB_ROOT_PASSWORD=your-secure-root-password
# ============================================
# BACKUP
# ============================================
# Number of days to keep backups
BACKUP_RETENTION_DAYS=30