You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
&& sed -i'''s|^\s*include.*conf\.d/.*| include /etc/nginx-mainline.d/*.conf;\n include /etc/nginx/conf.d/*.conf;\n include /etc/nginx/custom.d/*.conf;\n|g' /etc/nginx/nginx.conf
58
+
&& sed -i'''s|^\s*include.*conf\.d/.*| include /etc/httpd-custom.d/*.conf;\n include /etc/httpd/conf.d/*.conf;\n include /etc/httpd/vhost.d/*.conf;\n|g' /etc/nginx/nginx.conf
@@ -120,7 +120,7 @@ This Docker container adds a lot of injectables in order to customize it to your
120
120
| DEBUG_RUNTIME | bool |`0`| Be verbose during runtime.<br/>Value: `0` or `1`|
121
121
| DOCKER_LOGS | bool |`0`| When set to `1` will redirect error and access logs to Docker logs (`stderr` and `stdout`) instead of file inside container.<br/>Value: `0` or `1`|
122
122
| TIMEZONE | string |`UTC`| Set docker OS timezone.<br/>(Example: `Europe/Berlin`) |
123
-
| NEW_UID | int |`101`| Assign the default nginx user a new UID. This is useful if you you mount your document root and want to match the file permissions to the one of your local user. Set it to your host users uid (see `id` for your uid). |
123
+
| NEW_UID | int |`101`| Assign the default Nginx user a new UID. This is useful if you you mount your document root and want to match the file permissions to the one of your local user. Set it to your host users uid (see `id` for your uid). |
124
124
| NEW_GID | int |`101`| This is useful if you you mount your document root and want to match the file permissions to the one of your local user group. Set it to your host user groups gid (see `id` for your gid). |
125
125
| PHP_FPM_ENABLE | bool |`0`| Enable PHP-FPM for the default vhost and the mass virtual hosts. |
126
126
| PHP_FPM_SERVER_ADDR | string | `` | IP address or hostname of remote PHP-FPM server.<br/><strong>Required when enabling PHP.</strong> |
@@ -150,7 +150,7 @@ This Docker container adds a lot of injectables in order to customize it to your
150
150
151
151
| Docker | Description |
152
152
|---------------------|-------------|
153
-
| /etc/nginx-stable.d | Mount this directory to add outside configuration files (`*.conf`) to nginx|
153
+
| /etc/httpd-custom.d | Mount this directory to add outside configuration files (`*.conf`) to Nginx|
154
154
| /var/www/default | Nginx default virtual host base path (contains by default `htdocs/` and `cfg/`|
155
155
| /shared/httpd | Nginx mass virtual host root directory |
Note, for this to work, the `~/my-host-www` dir must be mounted into the nginx docker as well as into the php-fpm docker.
178
+
Note, for this to work, the `~/my-host-www` dir must be mounted into the Nginx Docker as well as into the php-fpm docker.
179
179
180
180
You can also attach other PHP-FPM version: [PHP-FPM 5.4](https://github.com/cytopia/docker-php-fpm-5.4), [PHP-FPM 5.5](https://github.com/cytopia/docker-php-fpm-5.5), [PHP-FPM 5.6](https://github.com/cytopia/docker-php-fpm-5.6), [PHP-FPM 7.0](https://github.com/cytopia/docker-php-fpm-7.0) or [PHP-FPM 7.1](https://github.com/cytopia/docker-php-fpm-7.1)
181
181
@@ -185,7 +185,7 @@ Each PHP-FPM docker also has the option to enable Xdebug and more, see their res
185
185
# Start the PHP-FPM docker, mounting the same diectory
0 commit comments