added comments

This commit is contained in:
Jonas Leder 2021-01-02 11:43:54 +01:00
parent c63b2f63a9
commit bb00e241f9

View file

@ -23,17 +23,22 @@ ENV PHP_EXTENSION_APCU=0 \
PHP_EXTENSION_PDO_MYSQL=0 \
PHP_EXTENSION_IGBINARY=0 \
PHP_EXTENSION_REDIS=0 \
PHP_EXTENSION_SOAP=0 \
APP_ENV=prod \
PHP_EXTENSION_SOAP=0
# |--------------------------------------------------------------------------
# | Enable production config files
# |--------------------------------------------------------------------------
ENV APP_ENV=prod \
TEMPLATE_PHP_INI=production \
PHP_INI_ERROR_REPORTING=0
# |--------------------------------------------------------------------------
# | Run Apache as www-data for more security
# |--------------------------------------------------------------------------
ENV APACHE_RUN_USER=www-data \
APACHE_RUN_GROUP=www-data
# |--------------------------------------------------------------------------
# | Add php files of website
# |--------------------------------------------------------------------------
COPY ./public /var/www/html
# Change back Apache user and group to www-data
ENV APACHE_RUN_USER=www-data \
APACHE_RUN_GROUP=www-data
COPY ./public /var/www/html