-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.env
More file actions
64 lines (57 loc) · 2.91 KB
/
example.env
File metadata and controls
64 lines (57 loc) · 2.91 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
# ######################################
# # Project ##
# ######################################
APP_NAME="# Name of your project, should be lowercase without spaces or special characters"
VIRTUAL_HOST="# Your virtual host (including .com)"
HOST_EMAIL="# Your email"
# ######################################
# # Permissions ##
# ######################################
USER="# Non-Root User For Containers to Run As"
GROUP="# Non-Root Group For Containers to Run As"
UID="# User/Group ID number, should be greater than 1023"
# ######################################
# # Paths ##
# ######################################
APP="# Location of your source code"
DOCKERFILES="# Location of your dockerfiles"
SECRETS="# Location of your secrets"
# ######################################
# # Versions ##
# ######################################
ALPINE_VERSION="3.18 # Version of Alpine image used across containers"
APACHE_VERSION="2.4.57 # Version of Apache image"
DB_VERSION="10.10.4 # Version of MariaDB image"
PHP_VERSION="8.1.19 # Version of PHP image"
# ######################################
# # Apache ##
# ######################################
APACHE_CERTIFICATE="/run/secrets/server-certificate # Location of your apache certificate secret in the apache container"
APACHE_CONFIG="# Location of Apache config files on host"
APACHE_LOGS="# Location of Apache log files on host"
APACHE_HTTP_PORT="# Host port (HTTP/Non-SSL)"
APACHE_HTTPS_PORT="# Host port (HTTPS/SSL-enabled)"
APACHE_PRIVATE_KEY="/run/secrets/server-private # Location of your apache private key secret in the apache container"
APACHE_PUBLIC_HTML="# Location of public_html folder on host, this is should be the single point of entry for the apache server"
# ######################################
# # MariaDB ##
# ######################################
DB_CONFIG="# Location of mariadb configuration files on host"
DB_DATA="# Location of mariadb data directory on host"
DB_INIT_SCRIPTS="# Location of backups and other sql scripts to be uploaded upon container startup"
DB_PORT="# Host port (HTTP/Non-SSL)"
# ######################################
# # PHP-FPM ##
# ######################################
PHP_CONFIG="# Location of PHP config files on host"
PHP_LOGS="# Location of PHP log files on host"
PHP_PORT="# Host port"
XDEBUG_PORT="9003 # Default port for XDebug (do not alter this one)"
# ######################################
# # PHPMyAdmin ##
# ######################################
PMA_CERTIFICATE="/run/secrets/pma-certificate # Location of pma-certificate in container"
PMA_CONFIG="# Location of pma on host"
PMA_PRIVATE_KEY="/run/secrets/pma-private.key # Location pma_private_key in container"
PMA_PORT="# Host pma port"
PMA_URI="https://shapecreations.pma # URI for pma (must use https)"