File tree Expand file tree Collapse file tree 4 files changed +33
-6
lines changed
Expand file tree Collapse file tree 4 files changed +33
-6
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,24 @@ All Notable changes to `KickAssDocker` will be documented in this file.
44
55Updates 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 11version : " 2"
22services :
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 :
Original file line number Diff line number Diff line change @@ -4,14 +4,14 @@ upstream fastcgi_backend {
44
55server {
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;
You can’t perform that action at this time.
0 commit comments