Browse Source

fix typo

tags/v1.5.4
Jonathan Cobb 3 years ago
parent
commit
23e0283cbf
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      Vagrantfile

+ 1
- 1
Vagrantfile View File

@@ -37,7 +37,7 @@ Vagrant.configure("2") do |config|


# You can access the launcher on port 8090 (or BUBBLE_PORT) but only on 127.0.0.1 # You can access the launcher on port 8090 (or BUBBLE_PORT) but only on 127.0.0.1
# If you want to allow outside access to port 8090 (listen on 0.0.0.0), use the version below # If you want to allow outside access to port 8090 (listen on 0.0.0.0), use the version below
if not ENV.include? 'BUBBLE_PUBLIC_PORT' or ENV['BUBBLE_PUBLIC_PORT'] == 'false' do
if not ENV.include? 'BUBBLE_PUBLIC_PORT' or ENV['BUBBLE_PUBLIC_PORT'] == 'false' then
config.vm.network "forwarded_port", guest: 8090, host: ENV['BUBBLE_PORT'] || 8090, host_ip: "127.0.0.1" config.vm.network "forwarded_port", guest: 8090, host: ENV['BUBBLE_PORT'] || 8090, host_ip: "127.0.0.1"
else else
# Anyone who can reach port 8090 on this system will be able to access the launcher # Anyone who can reach port 8090 on this system will be able to access the launcher


Loading…
Cancel
Save