├── LICENSE ├── README.md ├── boxcars └── boxcars.go ├── debug.go ├── example.json ├── handler.go ├── handlers-of.go ├── json-config ├── doc.go └── test │ ├── doc.go │ └── fixture_1.json ├── match.go ├── on-request.go ├── secure.go ├── secure_windows.go ├── server.go ├── servers.go ├── single-file-server.go ├── sites.go └── static-server.go /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/README.md -------------------------------------------------------------------------------- /boxcars/boxcars.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/boxcars/boxcars.go -------------------------------------------------------------------------------- /debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/debug.go -------------------------------------------------------------------------------- /example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/example.json -------------------------------------------------------------------------------- /handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/handler.go -------------------------------------------------------------------------------- /handlers-of.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/handlers-of.go -------------------------------------------------------------------------------- /json-config/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/json-config/doc.go -------------------------------------------------------------------------------- /json-config/test/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/json-config/test/doc.go -------------------------------------------------------------------------------- /json-config/test/fixture_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/json-config/test/fixture_1.json -------------------------------------------------------------------------------- /match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/match.go -------------------------------------------------------------------------------- /on-request.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/on-request.go -------------------------------------------------------------------------------- /secure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/secure.go -------------------------------------------------------------------------------- /secure_windows.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/secure_windows.go -------------------------------------------------------------------------------- /server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/server.go -------------------------------------------------------------------------------- /servers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/servers.go -------------------------------------------------------------------------------- /single-file-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/single-file-server.go -------------------------------------------------------------------------------- /sites.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/sites.go -------------------------------------------------------------------------------- /static-server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azer/boxcars-archived/HEAD/static-server.go --------------------------------------------------------------------------------