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
1011takes a set:
12```nix
13{14port,15protocol?"http",16location?"/",17websockets?false18}19```