mirror of
https://github.com/cytopia/devilbox.git
synced 2025-04-05 10:09:15 +00:00
Merge pull request #462 from cytopia/http2-support
Use HTTP/2 as default for all SSL connections
This commit is contained in:
commit
bd12669b88
@ -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';
|
||||
|
||||
//
|
||||
|
@ -401,6 +401,10 @@ The Devilbox has everything setup for you. The only thing you will have to insta
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="220" style="width:220px;">:star: HTTP/2 support</td>
|
||||
<td>All HTTPS connections will offer <a href="https://en.wikipedia.org/wiki/HTTP/2">HTTP/2</a> as the default protocol, except for Apache 2.2 which does not support it.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td width="220" style="width:220px;">:star: Auto virtual hosts</td>
|
||||
<td>New virtual hosts are created automatically and instantly whenever you add a project directory. This is done internally via <a href="https://travis-ci.org/devilbox/vhost-gen">vhost-gen</a> and <a href="https://github.com/devilbox/watcherd">watcherd</a>.</td>
|
||||
@ -423,7 +427,7 @@ The Devilbox has everything setup for you. The only thing you will have to insta
|
||||
</tr>
|
||||
<tr>
|
||||
<td>:star: Custom domains</td>
|
||||
<td>Choose whatever development domain you desire: <code>*.loc</code>, <code>*.local</code>, <code>*.dev</code> or use real domains as well: <code>*.example.com</code></td>
|
||||
<td>Choose whatever development domain you desire: <code>*.loc</code>, <code>*.dev</code> or use real domains as well: <code>*.example.com</code></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>:star: Auto DNS</td>
|
||||
|
@ -40,7 +40,8 @@
|
||||
###
|
||||
vhost: |
|
||||
<VirtualHost __DEFAULT_VHOST__:__PORT__>
|
||||
ServerName __VHOST_NAME__
|
||||
ServerName __VHOST_NAME__
|
||||
Protocols __HTTP_PROTO__
|
||||
|
||||
CustomLog "__ACCESS_LOG__" combined
|
||||
ErrorLog "__ERROR_LOG__"
|
||||
|
@ -46,7 +46,8 @@
|
||||
###
|
||||
vhost: |
|
||||
<VirtualHost __DEFAULT_VHOST__:__PORT__>
|
||||
ServerName __VHOST_NAME__
|
||||
ServerName __VHOST_NAME__
|
||||
Protocols __HTTP_PROTO__
|
||||
|
||||
CustomLog "__ACCESS_LOG__" combined
|
||||
ErrorLog "__ERROR_LOG__"
|
||||
|
@ -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;
|
||||
|
@ -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;
|
||||
|
@ -210,7 +210,7 @@ services:
|
||||
# Web Server
|
||||
# ------------------------------------------------------------
|
||||
httpd:
|
||||
image: devilbox/${HTTPD_SERVER}:0.25
|
||||
image: devilbox/${HTTPD_SERVER}:0.26
|
||||
hostname: httpd
|
||||
|
||||
environment:
|
||||
|
Loading…
x
Reference in New Issue
Block a user