@@ -16,20 +16,20 @@ if [ "${WORDPRESS_HTTPS,,}" == "true" ]; then
16
16
17
17
# generate a certificate and key if files don't exists
18
18
# https://github.com/osixia/docker-light-baseimage/blob/stable/image/service-available/:ssl-tools/assets/tool/ssl-helper
19
- ssl-helper ${WORDPRESS_SSL_HELPER_PREFIX} " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_CRT_FILENAME " " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_KEY_FILENAME " " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME "
19
+ ssl-helper " ${WORDPRESS_SSL_HELPER_PREFIX} " " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_CRT_FILENAME " " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_KEY_FILENAME " " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME "
20
20
21
21
# add CA certificat config if CA cert exists
22
22
if [ -e " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/certs/$WORDPRESS_SSL_CA_CRT_FILENAME " ]; then
23
- sed -i " s/#SSLCACertificateFile/SSLCACertificateFile/g" ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/https.conf
23
+ sed -i " s/#SSLCACertificateFile/SSLCACertificateFile/g" " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/https.conf"
24
24
fi
25
25
26
- ln -sf ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/https.conf /etc/apache2/sites-available/wordpress.conf
26
+ ln -sf " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/https.conf" /etc/apache2/sites-available/wordpress.conf
27
27
#
28
28
# HTTP config
29
29
#
30
30
else
31
31
log-helper info " Set apache2 http config..."
32
- ln -sf ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/http.conf /etc/apache2/sites-available/wordpress.conf
32
+ ln -sf " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/http.conf" /etc/apache2/sites-available/wordpress.conf
33
33
fi
34
34
35
35
if [ " ${WORDPRESS_DISABLE_XMLRPC,,} " == " true" ]; then
62
62
rm -rf /var/www/wordpress_bootstrap
63
63
64
64
# install plugins and themes
65
- cp --remove-destination -Rf ${CONTAINER_SERVICE_DIR} /wordpress/assets/wp-content/. /var/www/wordpress/wp-content
65
+ cp --remove-destination -Rf " ${CONTAINER_SERVICE_DIR} " /wordpress/assets/wp-content/. /var/www/wordpress/wp-content
66
66
67
67
# if there is no config
68
68
if [ ! -e " /var/www/wordpress/wp-config.php" ] && [ -e " ${CONTAINER_SERVICE_DIR} /wordpress/assets/config/wp-config.php" ]; then
69
69
70
70
log-helper debug " link ${CONTAINER_SERVICE_DIR} /wordpress/assets/config/wp-config.php to /var/www/wordpress/wp-config.php"
71
- ln -sf ${CONTAINER_SERVICE_DIR} /wordpress/assets/config/wp-config.php /var/www/wordpress/wp-config.php
71
+ ln -sf " ${CONTAINER_SERVICE_DIR} /wordpress/assets/config/wp-config.php" /var/www/wordpress/wp-config.php
72
72
73
73
fi
74
74
75
75
# container first start
76
76
if [ ! -e " $FIRST_START_DONE " ]; then
77
77
78
78
# Add .htaccess
79
- [ -e " /var/www/wordpress/.htaccess" ] || cp -f ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/.htaccess /var/www/wordpress/.htaccess
79
+ [ -e " /var/www/wordpress/.htaccess" ] || cp -f " ${CONTAINER_SERVICE_DIR} /wordpress/assets/apache2/.htaccess" /var/www/wordpress/.htaccess
80
80
81
81
# set new install default theme
82
82
if [ -n " $WORDPRESS_DEFAULT_THEME " ]; then
83
83
sed -i " s/define( 'WP_DEFAULT_THEME', '[^']*'/define( 'WP_DEFAULT_THEME', '${WORDPRESS_DEFAULT_THEME} '/g" /var/www/wordpress/wp-includes/default-constants.php
84
84
fi
85
85
86
- cp -f ${CONTAINER_SERVICE_DIR} /wordpress/assets/php7.0-fpm/opcache.ini /etc/php/7.0/fpm/conf.d/opcache.ini
86
+ cp -f " ${CONTAINER_SERVICE_DIR} /wordpress/assets/php7.0-fpm/opcache.ini" /etc/php/7.0/fpm/conf.d/opcache.ini
87
87
88
88
if [ " ${WORDPRESS_PRODUCTION} " = " true" ]; then
89
89
sed -i " s/;opcache.validate_timestamps/opcache.validate_timestamps/g" /etc/php/7.0/fpm/conf.d/opcache.ini
90
90
fi
91
91
92
- touch $ FIRST_START_DONE
92
+ touch " ${ FIRST_START_DONE} "
93
93
fi
94
94
95
95
# Fix file permission
@@ -104,5 +104,3 @@ if [ -e "/var/www/wordpress/wp-config.php" ]; then
104
104
chmod 400 /var/www/wordpress/wp-config.php
105
105
106
106
fi
107
-
108
- exit 0
0 commit comments