Skip to content
This repository has been archived by the owner on Oct 26, 2021. It is now read-only.

Commit

Permalink
#1090: Switched backend web ports to standard
Browse files Browse the repository at this point in the history
  • Loading branch information
pirog committed Oct 18, 2016
1 parent d4d471d commit d85d181
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 13 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ v2.1.0-rc.2
* More complete emulation of `/srv/bindings`. Helps things like CiviCRM support. [#1650](https://github.com/kalabox/kalabox/issues/1650)
* Simplified installation of deps. [#1656](https://github.com/kalabox/kalabox/issues/1656)
* Added `kbox redis` command. [#1183](https://github.com/kalabox/kalabox/issues/1183)
* Switched backend `web` service to common ports `443` and `80`. [#1090](https://github.com/kalabox/kalabox/issues/1090)

v2.1.0-rc.1
===========
Expand Down
4 changes: 2 additions & 2 deletions app/config/nginx/backdrop.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 8888 default_server;
listen 444 ssl;
listen 80 default_server;
listen 443 ssl;

server_name appserver;

Expand Down
4 changes: 2 additions & 2 deletions app/config/nginx/drupal.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 8888 default_server;
listen 444 ssl;
listen 80 default_server;
listen 443 ssl;

server_name appserver;

Expand Down
4 changes: 2 additions & 2 deletions app/config/nginx/drupal8.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 8888 default_server;
listen 444 ssl;
listen 80 default_server;
listen 443 ssl;

server_name appserver;

Expand Down
4 changes: 2 additions & 2 deletions app/config/nginx/wordpress.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
server {
listen 8888 default_server;
listen 444 ssl;
listen 80 default_server;
listen 443 ssl;

server_name appserver;

Expand Down
2 changes: 1 addition & 1 deletion app/config/varnish/default.vcl
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import std;

backend styxgo {
.host = "web";
.port = "8888";
.port = "80";
.connect_timeout = 600s;
.first_byte_timeout = 600s;
.between_bytes_timeout = 600s;
Expand Down
4 changes: 2 additions & 2 deletions app/kalabox-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ web:

hostname: $KALABOX_APP_HOSTNAME
ports:
- "8888"
- "444"
- "80"
- "443"
volumes:
- $KALABOX_APP_ROOT_BIND:/src
- $KALABOX_APP_ROOT_BIND/config/nginx/nginx.conf:/etc/nginx/nginx.conf
Expand Down
4 changes: 2 additions & 2 deletions app/kalabox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ pluginconfig:
#
services:
web:
- port: 8888/tcp
- port: 80/tcp
default: true
- port: 444/tcp
- port: 443/tcp
default: true
secure: true
edge:
Expand Down

0 comments on commit d85d181

Please sign in to comment.