-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
35 lines (27 loc) · 854 Bytes
/
Copy path.env.example
File metadata and controls
35 lines (27 loc) · 854 Bytes
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
# Docker Environment Configuration
# User/Group IDs (use your host user/group IDs)
# Get your IDs with: id -u && id -g
PUID=1000
PGID=1000
# Alternative: Use current user/group automatically
# PUID=$(id -u)
# PGID=$(id -g)
# Container configuration
COMPOSE_PROJECT_NAME=openresty-php
# Ports
HTTP_PORT=33333
HTTPS_PORT=33334
# SSL Configuration
# Comma-separated list of allowed domains (supports wildcards)
# Examples:
# - localhost,*.local,127.0.0.1 (development)
# - example.com,*.example.com (production)
# - *.mydomain.com,mydomain.com,*.dev.mydomain.com (multi-environment)
ALLOWED_DOMAINS=localhost,*.local,127.0.0.1
# Email for Let's Encrypt registration (required for production)
SSL_EMAIL=
# Use Let's Encrypt staging environment (true/false)
# Set to true for testing to avoid rate limits
SSL_STAGING=false
# Timezone (optional)
TZ=UTC