-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.conf
67 lines (51 loc) · 2.05 KB
/
options.conf
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
# Hostname can be anything. E.g. "vps", "zeus", "jupiter"
# FQDN can be any domain that you own and doesn't have to be hosted on this server
HOSTNAME=srv1
HOSTNAME_FQDN=srv1.yourdomain.com
# Set SSH port. (Default: 22)
SSHD_PORT=22
# Timezone
TIME_ZONE=America/Toronto
# Set an admin email account to be used for various system notifications and alerts
ADMIN_EMAIL="admin@yourdomain.com"
# Choose whether you want to maintain 'root login' or not. Options = yes|no
ROOT_LOGIN=no
# If root login is disabled, create a sudoer user
SUDO_USER=admin
SUDO_PASS=wxyz9876
# Oracle MariaDB = 1, MySQL = 2
DBSERVER=1
# Root password for MySQL, MariaDB
MYSQL_ROOT_USER=admin
MYSQL_ROOT_PASS=abcd1234
# phpMyAdmin = 1, Adminer = 2
DB_GUI=2
#########################################################
# You may simply use the defaults for the options below #
#########################################################
# Enable or disable AWStats. Options = yes|no
AWSTATS_ENABLE=no
# Enable or disable Git. Options = yes|no
GIT_ENABLE=no
# Any other packages that you wish to install. Leave empty if nothing more is needed
# Eg. MISC_PACKAGES="nano mc htop"
MISC_PACKAGES="htop mc zsh"
# Configure PHP. Recommended to leave PHP_BASE unchanged
# You may safely remove all the modules in PHP_EXTRAS
PHP_BASE="php8.1-fpm"
PHP_EXTRAS="php8.1-mysql php8.1-common php8.1-curl php8.1-bcmath php8.1-mbstring php8.1-tokenizer php8.1-sqlite3 php8.1-pgsql php8.1-redis php8.1-memcached php8.1-json php8.1-zip php8.1-xml php8.1-soap php8.1-gd php8.1-imagick php8.1-fileinfo php8.1-imap php8.1-cli php8.1-pspell php8.1-tidy php8.1-xml php8.1-xsl"
# Settings for php.ini
PHP_MEMORY_LIMIT=256M
PHP_MAX_EXECUTION_TIME=60
PHP_MAX_INPUT_TIME=60
PHP_POST_MAX_SIZE=25M
PHP_UPLOAD_MAX_FILESIZE=25M
# Settings for PHP5-FPM's pool
FPM_MAX_CHILDREN=5
FPM_START_SERVERS=1
FPM_MIN_SPARE_SERVERS=1
FPM_MAX_SPARE_SERVERS=2
FPM_MAX_REQUESTS=2000
# Size of the /tmp folder if you use "tmpdd" instead of "tmpfs". Default is 1GB
# Increase if you need larger but your free disk space will be reduced accordingly
TMP_SIZE=1000000