1# utility functions 2 3## `_utils.mkVhost` 4make virtual host with sensible defaults 5 6pass in a set to override the defaults. 7 8## `_utils.mkSimpleProxy` 9make a simple reverse proxy 10 11takes a set: 12```nix 13{ 14 port, 15 protocol ? "http", 16 location ? "/", 17 websockets ? false 18} 19```