<aside> 🐢 automation is an important factor in terms of security b/c it makes sure you have the same security across devices, can audit diff machines settings

</aside>

—> proxmox - fully free open-source ec2-like hosting

—> autistici.org

Virtual Box - a Hypervisor like the aws console, shows machines locally

Vagrant talks to Virtual Box, can talk to multiple hypervisors (e.g. aws) with same vagrantfiles

<aside> 🐌 - nginx is a popular webserver! production level hosting

</aside>

#!/bin/bash

# export DEBIAN_FRONTEND=noninteractive #^ so it won't prompt input
apt-get update
apt-get —-yes install nginx 
#^ with the flag because it won't be interactive and apt-get asks "do you want to install Y/n"

Ansible - create computerized runbooks!

---
- name: Install Webserver.
  hosts: all # or web or 1.2.3.4 or something more specific
  become: true # to say we are running this as root, kinda like sudo

  tasks:
    - name: Install Nginx.
      package: # module
        name: nginx
        state: present
vagrant.configure(") do |config|
    config.vm.box = "ubuntu/bionic64"
    config.vm.network "private_network", type:"dhcp"

    config.vm.define "web" do |c|
        c,vm.provision "ansible_local" do |a|
	    a.playbook = "provision/web.yaml"
        end
    end
end