vacuna 0.3.1

Simple web server for static files
Documentation
server {
   listen "[::]:80" 
//   listen "[::]:443" {
//        ssl {
//            cert {
//              key "/path/to/privkey"
//              cert "/path/to/fullchain"
//            }
//        }
//   } 
   host {
//       name "example.com"
//       name "www.example.com"
       path "/" {
          location "/var/www/html"
       }
   }

}