Skip to content

Instantly share code, notes, and snippets.

View 190ikp's full-sized avatar
😇
( ˘ω˘)

190ikp 190ikp

😇
( ˘ω˘)
View GitHub Profile
@190ikp
190ikp / Vagrantfile
Last active December 12, 2018 11:56
customized Vagrantfile
# -*- mode: ruby -*-
# vi: set ft=ruby :
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64"
config.vm.network "forwarded_port", guest: 80, host: 80, host_ip: "127.0.0.1"
config.vm.network "forwarded_port", guest: 443, host: 443, host_ip: "127.0.0.1"
@190ikp
190ikp / Vagrantfile
Created December 12, 2018 10:21
default Vagrantfile (ubuntu/bionic64)
# -*- mode: ruby -*-
# vi: set ft=ruby :
# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
# The most common configuration options are documented and commented below.
# For a complete reference, please see the online documentation at