File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ It is configured by setting two environment variables:
8
8
* ` UPSTREAM ` - The IP address or hostname (and optional port) of the upstream server to proxy requests towards.
9
9
* ` SERVERNAME ` - The hostname to listen to. The system will automatically obtain an SSL certificate for this hostname.
10
10
11
+ An optional ` EXTRANAMES ` variable can be provided with a list of additional domains to request as subject-alternative-names for the certificate.
12
+
11
13
Certificates from Let's Encrypt are issued with a 90 day expiration. This image will automatically renew the certificate when it is 60 days old.
12
14
13
15
Prior versions of this image used simp_le. It has been changed to use certbot due to reliability issues with simp_le.
@@ -30,6 +32,7 @@ Create a docker-compose.yml file as follows:
30
32
environment:
31
33
UPSTREAM: 127.0.0.1:8080
32
34
SERVERNAME: test.example.com
35
+ EXTRANAMES: www.test.example.com,test2.example.com
33
36
ports:
34
37
- "80:80"
35
38
- "443:443"
@@ -66,12 +69,6 @@ Reasonable defaults have been chosen with an eye towards a configuration which i
66
69
* [ envplate] ( https://github.com/kreuzwerker/envplate ) - for allowing use of environment variables in Nginx configuration
67
70
* [ s6-overlay] ( https://github.com/just-containers/s6-overlay ) - for PID 1, process supervision, zombie reaping
68
71
69
- ## Known Issues (Contributions Welcome!)
70
-
71
- * This image is a beast. As no external process produces build artifacts for inclusion into this image, it's larger than I'd like.
72
- * Currently only easily supports proxying a single hostname to a single backend server.
73
- * Requesting a certificate with both SERVERNAME and www.SERVERNAME as SANs may ease common deployment problems.
74
-
75
72
# Issues, Contributing
76
73
77
74
If you run into any problems with this image, please check for issues on [ GitHub] ( https://github.com/DanielDent/docker-nginx-ssl-proxy/issues ) .
You can’t perform that action at this time.
0 commit comments