-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy path.env.example
35 lines (31 loc) · 1.49 KB
/
.env.example
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
# ------------------------------------
# Versioning
# ------------------------------------
# Specify the versions of the services
NGINX_VERSION=1.21.6 # Update if newer stable version is available
PHP_VERSION=8.1.10 # Use PHP 8.1+ for security and performance
MYSQL_VERSION=8.0.32 # Update MySQL to the latest stable version
# ------------------------------------
# MySQL Configuration
# ------------------------------------
MYSQL_DATABASE=database1 # MySQL database name
MYSQL_USER=database1 # MySQL user
MYSQL_PASSWORD=password # MySQL user password
MYSQL_ROOT_PASSWORD=rootpw # MySQL root user password
MYSQL_TZ=UTC # Default timezone (use UTC for broader compatibility)
# ------------------------------------
# Nginx Configuration
# ------------------------------------
WEB_ROOT=/path/to/your/project # Web root directory for your projects
# ------------------------------------
# Paths to Configurations
# ------------------------------------
NGINX_CONFIG=./nginx/conf # Path to Nginx configuration files
PHP_CONFIG=./php-fpm/conf # Path to PHP configuration files
OFELIA_CONFIG=./config.ini # Path to Ofelia configuration file
DOCKER_SOCKET=/var/run/docker.sock # Docker socket path
# ------------------------------------
# Notes for Developers
# ------------------------------------
# Make sure to replace default passwords for security in production environments!
# Adjust the time zone according to your server or project needs.