Vagrant - пассажир недоступен с публичных IP-адресов - PullRequest
0 голосов
/ 14 февраля 2019

Vagrant - Ubuntu 16.04 - Passenger (автономный со встроенным nginx) - Ruby

Я собираюсь развернуть публичный сервер на моей локальной машине через вышеуказанный конфиг.Казалось, все работает, я проверяю это с браузера локальной машины и с мобильного через локальный Wi-Fi.Затем я попытался с другого IP-адреса и с того же мобильного через 4G, но безуспешно.

Конфигурация бродяги:

# -*- mode: ruby -*-
# vi: set ft=ruby :

Vagrant.configure("2") do |config|
  # Every Vagrant virtual environment requires a box to build off of.
  config.vm.box = "bento/ubuntu-16.04"

  # The url from where the 'config.vm.box' box will be fetched if it
  # doesn't already exist on the user's system.
  config.vm.box_url = "https://app.vagrantup.com/bento/boxes/ubuntu-16.04"

  # Create a forwarded port mapping which allows access to a specific port
  # within the machine from a port on the host machine. In the example below,
  # accessing "localhost:8080" will access port 80 on the guest machine.
  config.vm.network :forwarded_port, guest: 3000, host: 3000
  # Using a private network seems to be slightly faster, but it's simpler to point a browser to a forwarded port, so I'll leave that as the default.

  config.vm.network :"public_network"

#  config.vm.provision :shell, path: 'puppet/ubuntu.sh'

#  config.vm.provision :puppet do |puppet|
#    puppet.manifests_path = "puppet/manifests"
#    puppet.manifest_file  = "init.pp"
#  end

  config.vm.provider "virtualbox" do |v|
    v.customize ["modifyvm", :id, "--natdnsproxy1", "off"]
    v.customize ["modifyvm", :id, "--natdnshostresolver1", "off"]
    v.customize ["modifyvm", :id, "--memory", "12288", "--ioapic", "on", "--cpus", 4]
  end

Может кто-нибудь помочь мне, как я могу получить доступ к своему серверу извне,Каковы правильные настройки в этой среде?Спасибо!

...