Compare commits

..

2 commits

2 changed files with 6 additions and 2 deletions

View file

@ -38,7 +38,7 @@ The main goals of this project are:
## Prerequisites ## Prerequisites
- A server running Ubuntu or some other Debian-based distribution and working SSH access. (To try SATT in a local virtual machine, check out the Quickstart with Vagrant below) - A server running Ubuntu or some other Debian-based distribution and working SSH access. (To try SATT in a local virtual machine, check out the Quickstart with Vagrant below)
- Ansible on another computer that will send SSH commands to the target server to provision it - Ansible on another Linux machine that will send SSH commands to the target server to provision it
## Quickstart: Vagrant <a id="#quickstartVagrant"></a> ## Quickstart: Vagrant <a id="#quickstartVagrant"></a>

6
Vagrantfile vendored
View file

@ -43,7 +43,11 @@ Vagrant.configure(2) do |config|
config.vm.define "satt" do |dev| config.vm.define "satt" do |dev|
dev.vm.hostname = "satt.local" dev.vm.hostname = "satt.local"
dev.hostsupdater.aliases = ["nextcloud.satt.local", "jitsi.satt.local"]
# If you have installed the Vagrant::Hostsupdate plugin, you can add additional domains
# that should be mapped to the VM.
#dev.hostsupdater.aliases = ["nextcloud.satt.local", "jitsi.satt.local"]
# An additional IP that allows you to access the VM and its services from the VM host. # An additional IP that allows you to access the VM and its services from the VM host.
# If you change this IP, you will have to modify the `ansible_host` in the inventory file correspondingly. # If you change this IP, you will have to modify the `ansible_host` in the inventory file correspondingly.
# More information about the various network modes: # More information about the various network modes: