-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
50 lines (39 loc) · 1.05 KB
/
.env
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
COMPOSE_PROJECT_NAME=laraker
# Web Server
PHPVERSION=php83
DOCUMENT_ROOT=./www
APACHE_DOCUMENT_ROOT=/var/www/html
VHOSTS_DIR=./config/vhosts
APACHE_LOG_DIR=./logs/apache2
PHP_INI=./config/php/php.ini
# PHPMyAdmin
UPLOAD_LIMIT=512M
MEMORY_LIMIT=512M
# Xdebug
XDEBUG_LOG_DIR=./logs/xdebug
XDEBUG_PORT=9003
# Database
DATABASE=mariadb112
MYSQL_INITDB_DIR=./config/initdb
MYSQL_DATA_DIR=./data/mysql
MYSQL_LOG_DIR=./logs/mysql
# Databse Accounts
MYSQL_ROOT_PASSWORD=root_passwrod_1111
MYSQL_USER=db_name_1111_user
MYSQL_PASSWORD=db_name_1111_password
MYSQL_DATABASE=db_name_1111
# Redis Accounts
REDIS_PASSWORD=redis_password_1111
REDIS_WEB_PRA_USER=admin
REDIS_WEB_PRA_PASSWORD=admin
# Apache port expose (default: 80 for live)
HOST_MACHINE_UNSECURE_HOST_PORT=1111
HOST_MACHINE_SECURE_HOST_PORT=443
# MySQL port expose (default: 3306)
HOST_MACHINE_MYSQL_PORT=3306
# PHPMyAdmin port expose (default: 8080)
HOST_MACHINE_PMA_PORT=8080
# phpRedisAdmin port expose (default: 8008)
HOST_MACHINE_PRA_PORT=8008
# Redis port expose (default: 6379)
HOST_MACHINE_REDIS_PORT=6379