mirror of
https://github.com/10h30/wordpress-caddy-docker.git
synced 2026-06-05 15:09:52 +09:00
29 lines
753 B
Bash
29 lines
753 B
Bash
## Caddy ##
|
|
SERVER_NAME = 10h30.net
|
|
|
|
## Wordpress ##
|
|
WORDPRESS_DB_USER=siteuser
|
|
WORDPRESS_DB_PASSWORD=sitepassword
|
|
WORDPRESS_DB_NAME=wordpress
|
|
WORDPRESS_DB_HOST=db:3306
|
|
WORDPRESS_CONFIG_EXTRA=define('WP_REDIS_HOST','redis');
|
|
|
|
# Website Credentials
|
|
WORDPRESS_ADMIN_USER = admin
|
|
WORDPRESS_ADMIN_PASSWORD = thuanbuidepchai
|
|
WORDPRESS_ADMIN_EMAIL = admin@domain.com
|
|
|
|
# Blog Settings
|
|
WORDPRESS_TITLE = 'Blog Title Here'
|
|
WORDPRESS_PERMALINK_STRUCTURE = /%postname%/
|
|
WORDPRESS_THEME_TO_INSTALL = "kadence"
|
|
WORDPRESS_PLUGINS_TO_INSTALL = "redis-cache cache-enabler seo-by-rank-math"
|
|
|
|
## MYSQL ##
|
|
MYSQL_USER=siteuser
|
|
MYSQL_PASSWORD=sitepassword
|
|
MYSQL_DATABASE=wordpress
|
|
MYSQL_ROOT_PASSWORD=rootpassword
|
|
MYSQL_RANDOM_ROOT_PASSWORD=1
|
|
MARIADB_RANDOM_ROOT_PASSWORD=1
|