Fix white space in Vagrantfile

This commit is contained in:
Alex Cabal 2019-11-17 13:21:24 -06:00
parent 16ac19f19e
commit a4dabd6cab

14
Vagrantfile vendored
View file

@ -1,9 +1,9 @@
Vagrant.configure("2") do |config| Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/bionic64" config.vm.box = "ubuntu/bionic64"
config.vm.provision :shell, path: "scripts/vagrant/provision", config.vm.provision :shell, path: "scripts/vagrant/provision",
args: ["se-tools"] args: ["se-tools"]
config.vm.network :forwarded_port, guest: 80, host: 8080 config.vm.network :forwarded_port, guest: 80, host: 8080
config.vm.synced_folder ".", "/standardebooks.org", config.vm.synced_folder ".", "/standardebooks.org",
owner: "www-data", group: "www-data", owner: "www-data", group: "www-data",
mount_options: ["dmode=775,fmode=777"] mount_options: ["dmode=775,fmode=777"]
end end