File tree Expand file tree Collapse file tree 15 files changed +103
-0
lines changed
documentation/docs/content/DockerImages/dockerfiles Expand file tree Collapse file tree 15 files changed +103
-0
lines changed Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ Environment variables
1919.. include :: include/environment-web-dev.rst
2020
2121
22+ Customization
23+ -------------
24+
25+ .. include :: include/customization-apache.rst
26+
27+
2228Docker image layout
2329-------------------
2430
Original file line number Diff line number Diff line change @@ -17,6 +17,12 @@ Environment variables
1717.. include :: include/environment-web.rst
1818
1919
20+ Customization
21+ -------------
22+
23+ .. include :: include/customization-apache.rst
24+
25+
2026Docker image layout
2127-------------------
2228
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ Environment variables
1818.. include :: include/environment-web.rst
1919
2020
21+ Customization
22+ -------------
23+
24+ .. include :: include/customization-apache.rst
25+
26+
2127Docker image layout
2228-------------------
2329
Original file line number Diff line number Diff line change @@ -18,6 +18,12 @@ Environment variables
1818.. include :: include/environment-web.rst
1919
2020
21+ Customization
22+ -------------
23+
24+ .. include :: include/customization-nginx.rst
25+
26+
2127Docker image layout
2228-------------------
2329
Original file line number Diff line number Diff line change 1+ Apache customization
2+ ^^^^^^^^^^^^^^^^^^^^
3+
4+ This image has two directories for configuration files which will be automatic loaded.
5+
6+ For global configuration options the directory ``/opt/docker/etc/httpd/conf.d `` can be used.
7+ For vhost configuration options the directory ``/opt/docker/etc/httpd/vhost.common.conf``can be used.
8+
9+ Any ``*.conf `` files inside these direcories will be included either global or the vhost section.
Original file line number Diff line number Diff line change 1+ Nginx customization
2+ ^^^^^^^^^^^^^^^^^^^
3+
4+ This image has two directories for configuration files which will be automatic loaded.
5+
6+ For global configuration options the directory ``/opt/docker/etc/nginx/conf.d `` can be used.
7+ For vhost configuration options the directory ``/opt/docker/etc/nginx/vhost.common.conf``can be used.
8+
9+ Any ``*.conf `` files inside these direcories will be included either global or the vhost section.
Original file line number Diff line number Diff line change 1+ PHP customization
2+ ^^^^^^^^^^^^^^^^^
3+
4+ For customization a placeholder ``/opt/docker/etc/php/php.ini `` is available which will be loaded as last
5+ configuration file. All settings can be overwritten in this ini file.
6+
7+ Either use ``COPY `` inside your ``Dockerfile `` to overwrite this file or use
8+ ``RUN echo memory_limit = 128 M >> /opt/docker/etc/php/php.ini `` to set specific php.ini values.
Original file line number Diff line number Diff line change @@ -19,6 +19,12 @@ Environment variables
1919.. include :: include/environment-web-dev.rst
2020
2121
22+ Customization
23+ -------------
24+
25+ .. include :: include/customization-nginx.rst
26+
27+
2228Docker image layout
2329-------------------
2430
Original file line number Diff line number Diff line change @@ -16,6 +16,12 @@ Environment variables
1616.. include :: include/environment-web.rst
1717
1818
19+ Customization
20+ -------------
21+
22+ .. include :: include/customization-nginx.rst
23+
24+
1925Docker image layout
2026-------------------
2127
Original file line number Diff line number Diff line change @@ -19,6 +19,13 @@ Environment variables
1919.. include :: include/environment-php-dev.rst
2020
2121
22+ Customization
23+ -------------
24+
25+ .. include :: include/customization-php.rst
26+ .. include :: include/customization-apache.rst
27+
28+
2229Docker image layout
2330-------------------
2431
You can’t perform that action at this time.
0 commit comments