This commit is contained in:
2020-08-25 14:38:54 -04:00
63 changed files with 19521 additions and 161 deletions

16
Vagrantfile vendored
View File

@ -42,7 +42,7 @@ Vagrant.configure("2") do |config|
# accessing "localhost:8080" will access port 80 on the guest machine.
# NOTE: This will enable public access to the opened port
config.vm.network "forwarded_port", guest: 80, host: 8000
config.vm.network "forwarded_port", guest: 443, host: 8443
config.vm.network "forwarded_port", guest: 3000, host: 8300
@ -100,9 +100,9 @@ Vagrant.configure("2") do |config|
chef.json = {
'working-dir': '/vagrant',
'app': {
'name': 't42-proxy',
'name': 'vpn-p2p',
'run_user': 'root',
'domain': 'proxy.local',
'domain': 'vpn-p2p.local',
},
'python': {
# 'working-dir': 'django',
@ -120,11 +120,11 @@ Vagrant.configure("2") do |config|
'perm': '777'
}
},
'web':{
'admin_email': 'admin2342@example.com',
'do_ssl': true,
't42-proxy': true
},
# 'web':{
# 'admin_email': 'admin2342@example.com',
# 'do_ssl': true,
# 't42-proxy': true
# },
}.deep_merge(secrets);
end
end