diff --git a/.devilbox/www/config.php b/.devilbox/www/config.php
index ac75da30..bc064fdb 100644
--- a/.devilbox/www/config.php
+++ b/.devilbox/www/config.php
@@ -14,7 +14,7 @@ putenv('RES_OPTIONS=retrans:1 retry:1 timeout:1 attempts:1');
$DEVILBOX_VERSION = 'v0.15';
-$DEVILBOX_DATE = '2019-01-02';
+$DEVILBOX_DATE = '2019-01-06';
$DEVILBOX_API_PAGE = 'devilbox-api/status.json';
//
diff --git a/README.md b/README.md
index cf3578c3..946eb647 100644
--- a/README.md
+++ b/README.md
@@ -401,6 +401,10 @@ The Devilbox has everything setup for you. The only thing you will have to insta
+
+ :star: HTTP/2 support |
+ All HTTPS connections will offer HTTP/2 as the default protocol, except for Apache 2.2 which does not support it. |
+
:star: Auto virtual hosts |
New virtual hosts are created automatically and instantly whenever you add a project directory. This is done internally via vhost-gen and watcherd. |
@@ -423,7 +427,7 @@ The Devilbox has everything setup for you. The only thing you will have to insta
:star: Custom domains |
- Choose whatever development domain you desire: *.loc , *.local , *.dev or use real domains as well: *.example.com |
+ Choose whatever development domain you desire: *.loc , *.dev or use real domains as well: *.example.com |
:star: Auto DNS |
diff --git a/cfg/vhost-gen/apache24.yml-example-rproxy b/cfg/vhost-gen/apache24.yml-example-rproxy
index c5170b0a..0bbc9c3d 100644
--- a/cfg/vhost-gen/apache24.yml-example-rproxy
+++ b/cfg/vhost-gen/apache24.yml-example-rproxy
@@ -40,7 +40,8 @@
###
vhost: |
- ServerName __VHOST_NAME__
+ ServerName __VHOST_NAME__
+ Protocols __HTTP_PROTO__
CustomLog "__ACCESS_LOG__" combined
ErrorLog "__ERROR_LOG__"
diff --git a/cfg/vhost-gen/apache24.yml-example-vhost b/cfg/vhost-gen/apache24.yml-example-vhost
index ca8a036f..061428ad 100644
--- a/cfg/vhost-gen/apache24.yml-example-vhost
+++ b/cfg/vhost-gen/apache24.yml-example-vhost
@@ -46,7 +46,8 @@
###
vhost: |
- ServerName __VHOST_NAME__
+ ServerName __VHOST_NAME__
+ Protocols __HTTP_PROTO__
CustomLog "__ACCESS_LOG__" combined
ErrorLog "__ERROR_LOG__"
diff --git a/cfg/vhost-gen/nginx.yml-example-rproxy b/cfg/vhost-gen/nginx.yml-example-rproxy
index 26729ab4..25167b13 100644
--- a/cfg/vhost-gen/nginx.yml-example-rproxy
+++ b/cfg/vhost-gen/nginx.yml-example-rproxy
@@ -40,7 +40,7 @@
###
vhost: |
server {
- listen __PORT____DEFAULT_VHOST__;
+ listen __PORT____HTTP_PROTO____DEFAULT_VHOST__;
server_name __VHOST_NAME__;
access_log "__ACCESS_LOG__" combined;
diff --git a/cfg/vhost-gen/nginx.yml-example-vhost b/cfg/vhost-gen/nginx.yml-example-vhost
index 44c4c09f..524ca691 100644
--- a/cfg/vhost-gen/nginx.yml-example-vhost
+++ b/cfg/vhost-gen/nginx.yml-example-vhost
@@ -46,7 +46,7 @@
###
vhost: |
server {
- listen __PORT____DEFAULT_VHOST__;
+ listen __PORT____HTTP_PROTO____DEFAULT_VHOST__;
server_name __VHOST_NAME__;
access_log "__ACCESS_LOG__" combined;
diff --git a/docker-compose.yml b/docker-compose.yml
index de086d3e..2473d453 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -210,7 +210,7 @@ services:
# Web Server
# ------------------------------------------------------------
httpd:
- image: devilbox/${HTTPD_SERVER}:0.25
+ image: devilbox/${HTTPD_SERVER}:0.26
hostname: httpd
environment: