forked from cosimoscarcella/wordpress-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.env
28 lines (23 loc) · 685 Bytes
/
.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
# System
ARCHITECTURE_PLATFORM = linux/amd64
WP_CLI_CACHE_DIR = /tmp
# Host
WORDPRESS_PORT = 8080
PHPMYADMIN_PORT = 3000
# Database
MYSQL_DATABASE = wordpress
MYSQL_USER = wordpress
MYSQL_PASSWORD = user-password
MYSQL_ROOT_PASSWORD = root-password
WORDPRESS_TABLE_PREFIX = wp_
# Extra
WORDPRESS_DEBUG = false
# Website Credentials
WORDPRESS_ADMIN_USER = admin
WORDPRESS_ADMIN_PASSWORD = admin-password
WORDPRESS_ADMIN_EMAIL = [email protected]
# Blog Settings
WORDPRESS_TITLE = "Blog Title Here"
WORDPRESS_PERMALINK_STRUCTURE = /%postname%/
WORDPRESS_THEME_TO_INSTALL = "astra"
WORDPRESS_PLUGINS_TO_INSTALL = "all-in-one-wp-security-and-firewall folders wp-smushit wordpress-seo"