Skip to content
This repository was archived by the owner on Jan 6, 2018. It is now read-only.

Commit 235835a

Browse files
committed
1 parent 553adee commit 235835a

File tree

8 files changed

+16
-12
lines changed

8 files changed

+16
-12
lines changed

Gruntfile.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
var current_version = '1.1.7';
2-
var new_version = '1.1.8';
1+
var current_version = '1.1.8';
2+
var new_version = '1.1.9';
33

44
module.exports = function(grunt) {
55
grunt.loadNpmTasks('grunt-replace');

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ The front page of your development environment.
1111
-h "${CONTAINER}" \
1212
--entrypoint /bin/echo \
1313
-v /vhost \
14-
dockerizedrupal/vhost:1.1.8 "Data-only container for vhost."
14+
dockerizedrupal/vhost:1.1.9 "Data-only container for vhost."
1515

1616
CONTAINER="vhost" && sudo docker run \
1717
--name "${CONTAINER}" \
@@ -35,15 +35,15 @@ The front page of your development environment.
3535
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_LENGTH="32" \
3636
-e HTTP_BASIC_AUTH_RANDOM_PASSWORD_SALT="" \
3737
-d \
38-
dockerizedrupal/vhost:1.1.8
38+
dockerizedrupal/vhost:1.1.9
3939

4040
## Build the image
4141

4242
TMP="$(mktemp -d)" \
4343
&& git clone https://github.com/dockerizedrupal/vhost.git "${TMP}" \
4444
&& cd "${TMP}" \
45-
&& git checkout 1.1.8 \
46-
&& sudo docker build -t dockerizedrupal/vhost:1.1.8 . \
45+
&& git checkout 1.1.9 \
46+
&& sudo docker build -t dockerizedrupal/vhost:1.1.9 . \
4747
&& cd -
4848

4949
## Changing the container behaviour on runtime through environment variables

VERSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.1.8
1+
1.1.9

Vagrantfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = "1.1.8"
1+
VERSION = "1.1.9"
22

33
require 'yaml'
44

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
vhost:
2-
image: dockerizedrupal/vhost:1.1.8
2+
image: dockerizedrupal/vhost:1.1.9
33
hostname: vhost
44
restart: always
55
ports:
@@ -24,7 +24,7 @@ vhost:
2424
- HTTP_BASIC_AUTH_RANDOM_PASSWORD_LENGTH=32
2525
- HTTP_BASIC_AUTH_RANDOM_PASSWORD_SALT=
2626
vhost-data:
27-
image: dockerizedrupal/vhost:1.1.8
27+
image: dockerizedrupal/vhost:1.1.9
2828
hostname: vhost-data
2929
entrypoint: ["/bin/echo", "Data-only container for vhost."]
3030
volumes:

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "vhost",
3-
"version": "1.1.8",
3+
"version": "1.1.9",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/dockerizedrupal/vhost.git"

src/vhost/build/modules/build/files/etc/nginx/nginx.conf

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ http {
2222

2323
client_max_body_size 0;
2424

25+
proxy_buffer_size 128k;
26+
proxy_buffers 4 256k;
27+
proxy_busy_buffers_size 256k;
28+
2529
chunked_transfer_encoding on;
2630

2731
server_names_hash_bucket_size 512;

src/vhost/run/modules/vhost/templates/index.php.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -295,7 +295,7 @@ function services($project) {
295295
vhost <small><%= @server_name %></small>
296296
<a href="https://hub.docker.com/r/dockerizedrupal/vhost/" target="_blank">
297297
<span class="current-version">
298-
<span class="label label-info">Current version: <span class="version">1.1.8</span></span>
298+
<span class="label label-info">Current version: <span class="version">1.1.9</span></span>
299299
</span>
300300
<span class="latest-version" data-version-file="https://raw.githubusercontent.com/dockerizedrupal/vhost/master/VERSION.md">
301301
<span class="label label-warning">New version is available <i class="fa fa-exclamation-circle"></i></span>

0 commit comments

Comments
 (0)