Skip to content

Commit d27c243

Browse files
committed
Merge branch 'release/0.1.1'
2 parents 2f15f12 + 73d593e commit d27c243

File tree

4 files changed

+33
-6
lines changed

4 files changed

+33
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ All Notable changes to `KickAssDocker` will be documented in this file.
44

55
Updates should follow the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
66

7+
## 0.1.1 - 2017-02-17
8+
9+
### Added
10+
- Nothing
11+
12+
### Deprecated
13+
- Nothing
14+
15+
### Fixed
16+
- Nginx vhost template
17+
- `docker-compose.yml` example
18+
19+
### Removed
20+
- Nothing
21+
22+
### Security
23+
- Nothing
24+
725
## 0.1.0 - 2017-02-16
826

927
### Added

docker-compose-build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@ services:
33
web:
44
build:
55
context: nginx/
6+
environment:
7+
- VIRTUAL_HOST=dev.kickasscommerce.com
8+
- VIRTUAL_PORT=80
9+
- HTTPS_METHOD=noredirect
610
ports:
711
- 80
12+
links:
13+
- fpm
814
volumes_from:
915
- appdata
1016

docker-compose.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
11
version: "2"
22
services:
33
web:
4-
image: kickasscommerce/kickass-nginx:latest
4+
image: kickasscommerce/kickass-nginx:1.9
5+
hostname: dev.kickasscommerce.com
56
environment:
6-
- VIRTUAL_HOST=kickasscommerce.docker
7+
- VIRTUAL_HOST=dev.kickasscommerce.com
78
- VIRTUAL_PORT=80
89
- HTTPS_METHOD=noredirect
10+
- CERT_NAME=default
911
ports:
1012
- 80
13+
- 443
1114
links:
1215
- fpm
1316
volumes_from:

nginx/etc/vhost.conf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@ upstream fastcgi_backend {
44

55
server {
66
listen 80;
7-
listen [::]:80 ipv6only=on;
7+
8+
server_name localhost;
89

910
set $APP_ROOT !APP_ROOT!;
1011

11-
root $APP_ROOT;
12+
root $APP_ROOT/public;
1213
index index.php index.html index.htm;
13-
14-
server_name localhost;
14+
autoindex off;
1515

1616
location / {
1717
try_files $uri $uri/ /index.php?$query_string;

0 commit comments

Comments
 (0)