├── .credo.exs ├── .formatter.exs ├── .github └── workflows │ ├── ci.yml │ └── publish.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── lib └── plug_canonical_host.ex ├── mix.exs ├── mix.lock └── test ├── plug_canonical_host_test.exs └── test_helper.exs /.credo.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/.credo.exs -------------------------------------------------------------------------------- /.formatter.exs: -------------------------------------------------------------------------------- 1 | [ 2 | inputs: ["mix.exs", "{lib,test}/**/*.{ex,exs}"], 3 | line_length: 180 4 | ] 5 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | deps 3 | doc 4 | .plts 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/README.md -------------------------------------------------------------------------------- /lib/plug_canonical_host.ex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/lib/plug_canonical_host.ex -------------------------------------------------------------------------------- /mix.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/mix.exs -------------------------------------------------------------------------------- /mix.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/mix.lock -------------------------------------------------------------------------------- /test/plug_canonical_host_test.exs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remi/plug_canonical_host/HEAD/test/plug_canonical_host_test.exs -------------------------------------------------------------------------------- /test/test_helper.exs: -------------------------------------------------------------------------------- 1 | ExUnit.start() 2 | --------------------------------------------------------------------------------