Skip to content

Commit

Permalink
#1069 Replace port 8090 with 8080 (#1077)
Browse files Browse the repository at this point in the history
  • Loading branch information
na-gupta committed Apr 19, 2017
1 parent b582087 commit be60603
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Tests/KituraTests/TestServer.swift
Expand Up @@ -31,7 +31,7 @@ class TestServer: KituraTest {
]
}

let httpPort = 8090
let httpPort = 8080
let fastCgiPort = 9000

override func setUp() {
Expand Down
6 changes: 3 additions & 3 deletions vagrantfile
Expand Up @@ -3,8 +3,8 @@

BOX_URL = 'https://cloud-images.ubuntu.com/vagrant/trusty/current/trusty-server-cloudimg-amd64-vagrant-disk1.box'.freeze

SWIFT_PATH = 'https://swift.org/builds/swift-3.0.2-release/ubuntu1404/swift-3.0.2-RELEASE'.freeze
SWIFT_DIRECTORY = 'swift-3.0.2-RELEASE-ubuntu14.04'.freeze
SWIFT_PATH = 'https://swift.org/builds/swift-3.1-release/ubuntu1404/swift-3.1-RELEASE'.freeze
SWIFT_DIRECTORY = 'swift-3.1-RELEASE-ubuntu14.04'.freeze
SWIFT_FILE = "#{SWIFT_DIRECTORY}.tar.gz".freeze
SWIFT_HOME = "/home/vagrant/#{SWIFT_DIRECTORY}".freeze

Expand All @@ -13,7 +13,7 @@ KITURA_BRANCH = 'master'.freeze

Vagrant.configure(2) do |config|
config.vm.box = BOX_URL
config.vm.network 'forwarded_port', guest: 8090, host: 8090
config.vm.network 'forwarded_port', guest: 8080, host: 8080

# Prevents "stdin: is not a tty" on Ubuntu (https://github.com/mitchellh/vagrant/issues/1673)
config.vm.provision 'fix-no-tty', type: 'shell' do |s|
Expand Down

0 comments on commit be60603

Please sign in to comment.