Make intranet SSL certificate CN configurable

This commit is contained in:
cytopia 2018-05-02 15:10:08 +02:00
parent 42383489bd
commit 05af938cb8
No known key found for this signature in database
GPG Key ID: 6D56EDB8695128A2
2 changed files with 17 additions and 0 deletions

View File

@ -227,6 +227,7 @@ services:
- MAIN_VHOST_STATUS_ALIAS=/devilbox-httpd-status
- MAIN_VHOST_SSL_TYPE=both
- MAIN_VHOST_SSL_GEN=1
- MAIN_VHOST_SSL_CN=${DEVILBOX_UI_SSL_CN:-localhost}
##
## Enable Mass Vhosts

View File

@ -149,6 +149,22 @@ TIMEZONE=Europe/Berlin
DNS_CHECK_TIMEOUT=1
###
### Devilbox UI SSL Certificate generation
###
### When using SSL each certificate requires names for which it is responsible:
### Common Name as well as alternative names.
###
### Specify comma separated hostnames below by which you want to access the Devilbox.
### Those hostnames will be included in the SSL certificate for the Devilbox intranet.
### This has nothing to do for SSL certificates for projects, it is just for the intranet
### itself.
###
DEVILBOX_UI_SSL_CN=localhost,*.localhost,devilbox,*.devilbox
###
### Devilbox UI Password protection enable/disable (1/0)
###