Skip to content
Snippets Groups Projects
Commit bb00e241 authored by Jonas Leder's avatar Jonas Leder
Browse files

added comments

parent c63b2f63
No related branches found
No related tags found
No related merge requests found
...@@ -23,17 +23,22 @@ ENV PHP_EXTENSION_APCU=0 \ ...@@ -23,17 +23,22 @@ ENV PHP_EXTENSION_APCU=0 \
PHP_EXTENSION_PDO_MYSQL=0 \ PHP_EXTENSION_PDO_MYSQL=0 \
PHP_EXTENSION_IGBINARY=0 \ PHP_EXTENSION_IGBINARY=0 \
PHP_EXTENSION_REDIS=0 \ PHP_EXTENSION_REDIS=0 \
PHP_EXTENSION_SOAP=0 \ PHP_EXTENSION_SOAP=0
APP_ENV=prod \
# |--------------------------------------------------------------------------
# | Enable production config files
# |--------------------------------------------------------------------------
ENV APP_ENV=prod \
TEMPLATE_PHP_INI=production \ TEMPLATE_PHP_INI=production \
PHP_INI_ERROR_REPORTING=0 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 # | Add php files of website
# |-------------------------------------------------------------------------- # |--------------------------------------------------------------------------
COPY ./public /var/www/html COPY ./public /var/www/html
\ No newline at end of file
# Change back Apache user and group to www-data
ENV APACHE_RUN_USER=www-data \
APACHE_RUN_GROUP=www-data
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment