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
{{ message }}
This repository was archived by the owner on Jul 2, 2024. It is now read-only.
To run the a docker container from this image you can use the standard docker commands. Alternatively, you can use the embedded (Service Container Manager Interface) [scmi](https://github.com/jdeathe/centos-ssh-apache-php-fcgi/blob/centos-6/usr/sbin/scmi) that is included in the image since `centos-6-1.7.0` or, if you have a checkout of the [source repository](https://github.com/jdeathe/centos-ssh-apache-php-fcgi), and have make installed the Makefile provides targets to build, install, start, stop etc. where environment variables can be used to configure the container options and set custom docker run parameters.
75
+
To run the a docker container from this image you can use the standard docker commands. Alternatively, you can use the embedded (Service Container Manager Interface) [scmi](https://github.com/jdeathe/centos-ssh-apache-php-fcgi/blob/centos-6/usr/sbin/scmi) that is included in the image since `centos-6-1.7.1` or, if you have a checkout of the [source repository](https://github.com/jdeathe/centos-ssh-apache-php-fcgi), and have make installed the Makefile provides targets to build, install, start, stop etc. where environment variables can be used to configure the container options and set custom docker run parameters.
@@ -134,15 +134,15 @@ If your docker host has systemd, fleetd (and optionally etcd) installed then `sc
134
134
135
135
##### SCMI Image Information
136
136
137
-
Since release `centos-6-1.7.0` the install template has been added to the image metadata. Using docker inspect you can access `scmi` to simplify install/uninstall tasks.
137
+
Since release `centos-6-1.7.1` the install template has been added to the image metadata. Using docker inspect you can access `scmi` to simplify install/uninstall tasks.
138
138
139
139
To see detailed information about the image run `scmi` with the `--info` option. To see all available `scmi` options run with the `--help` option.
140
140
141
141
```
142
142
$ eval "sudo -E $(
143
143
docker inspect \
144
144
-f "{{.ContainerConfig.Labels.install}}" \
145
-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
145
+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
146
146
) --info"
147
147
```
148
148
@@ -152,7 +152,7 @@ To perform an installation using the docker name `apache-php.pool-1.2.1` simply
152
152
$ eval "sudo -E $(
153
153
docker inspect \
154
154
-f "{{.ContainerConfig.Labels.install}}" \
155
-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
155
+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
156
156
) --name=apache-php.pool-1.2.1"
157
157
```
158
158
@@ -162,7 +162,7 @@ To uninstall use the *same command* that was used to install but with the `unins
162
162
$ eval "sudo -E $(
163
163
docker inspect \
164
164
-f "{{.ContainerConfig.Labels.uninstall}}" \
165
-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
165
+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
166
166
) --name=apache-php.pool-1.2.1"
167
167
```
168
168
@@ -175,7 +175,7 @@ To see detailed information about the image run `scmi` with the `--info` option.
@@ -200,7 +200,7 @@ To uninstall use the *same command* that was used to install but with the `unins
200
200
```
201
201
$ sudo -E atomic uninstall \
202
202
-n apache-php.pool-1.3.1 \
203
-
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.0
203
+
jdeathe/centos-ssh-apache-php-fcgi:centos-6-1.7.1
204
204
```
205
205
206
206
#### Environment Variables
@@ -338,6 +338,58 @@ The public directory is relative to the `APACHE_CONTENT_ROOT` and together they
338
338
...
339
339
```
340
340
341
+
##### APACHE_SSL_CERTIFICATE
342
+
343
+
The `APACHE_SSL_CERTIFICATE` environment variable is used to define a PEM, (and optionally base64), encoded certificate bundle. Base64 encoding of the PEM file contents is recommended. To make a compatible certificate bundle use the `cat` command to combine the certificate files together.
344
+
345
+
```
346
+
$ cat /usr/share/private/server-key.pem \
347
+
/usr/share/certs/server-certificate.pem \
348
+
/usr/share/certs/intermediate-certificate.pem \
349
+
> /usr/share/certs/server-bundle.pem
350
+
```
351
+
352
+
*Note:* The `base64` command on Mac OSX will encode a file without line breaks by default but if using the command on Linux you need to include use the `-w` option to prevent wrapping lines at 80 characters. i.e. `base64 -w 0 -i {certificate-path}`.
353
+
354
+
```
355
+
...
356
+
--env "APACHE_SSL_CERTIFICATE=$(
357
+
base64 -i "/usr/share/certs/server-bundle.pem"
358
+
)" \
359
+
...
360
+
```
361
+
362
+
##### APACHE_SSL_CIPHER_SUITE
363
+
364
+
Use the `APACHE_SSL_CIPHER_SUITE` environment variable to define an appropriate Cipher Suite. The default "intermediate" selection should be suitable for most use-cases where support for a wide range browsers is necessary.
-[Mozilla Security/Server Side TLS guidance](https://wiki.mozilla.org/Security/Server_Side_TLS).
369
+
370
+
*Note:* The value show is using space separated values to allow for readablity in the documentation; this is valid syntax however using the colon separator is the recommended form.
Use the `APACHE_SSL_PROTOCOL` environment variable to define the supported protocols. The default protocols are suitable for most "intermediate" use-cases however you might want to restrict the TLS version support for example.
0 commit comments