Compare commits

..

No commits in common. "4e97e09466178443dde99868f1c25b69b11bcbbd" and "9333db3d29b92d25fdd1aacb03b71370e17b03a8" have entirely different histories.

2 changed files with 0 additions and 23 deletions

7
.gitignore vendored
View File

@ -38,12 +38,6 @@ Network Trash Folder
Temporary Items
.apdisk
## Vagrant
.vagrant/
# Log files (if you are creating logs in debug mode, uncomment this)
# *.log
## Project Files
wsgi/.idea
www/dlsv
@ -53,4 +47,3 @@ www/data/events.xml
www/data/geolocation.js
scripts/*.json
scripts/*.xml

16
Vagrantfile vendored
View File

@ -1,16 +0,0 @@
Vagrant.configure("2") do |config|
config.vm.box = "ubuntu/jammy64"
config.vm.synced_folder ".", "/vagrant"
config.vm.network(:forwarded_port, guest: 80, host: 8888)
config.vm.provision :shell, inline: <<-SHELL
sudo apt-get -y update
sudo apt-get -y install nginx
echo "Starting nginx..."
sudo ln -s /vagrant/www /var/www/html/map
sudo cp /vagrant/www/index.html.en /vagrant/www/index.html
sudo useradd -s /bin/false nginx
sudo service nginx restart
SHELL
end