From 358c0abd22108e219d1b11fbde8976b578a69fc5 Mon Sep 17 00:00:00 2001 From: meaz Date: Mon, 9 Jan 2023 07:05:14 +0100 Subject: [PATCH] add acl in vagrant file --- Vagrantfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Vagrantfile b/Vagrantfile index 8e3e04e..1147eae 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -15,6 +15,6 @@ Vagrant.configure("2") do |config| pleroma.vm.network "forwarded_port", guest: 80, host: 8888, host_ip: "192.168.33.15" pleroma.vm.network "forwarded_port", guest: 443, host: 4443, host_ip: "192.168.33.15" pleroma.vm.network "private_network", ip: "192.168.33.15" - + config.vm.provision "shell", inline: "apt install acl" end end