diff options
author | Naoaki Ueda <nao@uedder.com> | 2022-09-04 18:23:17 +0900 |
---|---|---|
committer | Naoaki Ueda <nao@uedder.com> | 2022-09-04 18:23:17 +0900 |
commit | 372de06b4363d38d92c503cc96103b6a879c2820 (patch) | |
tree | 8114a32239e3ad98d53284d31fc6ff7f6b2b27d2 /dotenv.makefile.sample | |
download | wordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.tar.gz wordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.tar.bz2 wordpress-dev-372de06b4363d38d92c503cc96103b6a879c2820.zip |
Initial commit
Diffstat (limited to 'dotenv.makefile.sample')
-rw-r--r-- | dotenv.makefile.sample | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/dotenv.makefile.sample b/dotenv.makefile.sample new file mode 100644 index 0000000..44928d8 --- /dev/null +++ b/dotenv.makefile.sample @@ -0,0 +1,25 @@ +# Copy this file and edit for your environment and save as `.env.makefile` + +PHP_VER := 8.1 +export MARIADB_VER := 10.3 + +export WP_IMAGE_TAG := php$(PHP_VER)-apache +export WP_CLI_IMAGE_TAG := cli-php$(PHP_VER) + +# WP_INSTALL_DIR := wp +# WP_CONF := $(HTML_DIR)/$(WP_INSTALL_DIR)/wp-config.php + +# DOCKER = PODMAN + +SSH_REMOTE_HOST := example.com + +SITE_URL_PATTERN := https?://(www.)?example.com +LOCAL_URL := http://localhost:8000 + +REMOTE_DOCROOT_PATH := /home/example.com/html +LOCAL_DOCROOT := /var/www/html/ + +# CLONE_EXCLUDE= + +# To use misc +# include misc/disable-really-simple-ssl.makefile |