1---
2id: installation
3title: Installation
4slug: /
5---
6
71.  Choose how to deploy:
8
9    a. Download [Prebuilt Binary](https://github.com/oauth2-proxy/oauth2-proxy/releases) (current release is `v7.2.0`)
10
11    b. Build with `$ go get github.com/oauth2-proxy/oauth2-proxy/v7` which will put the binary in `$GOPATH/bin`
12
13    c. Using the prebuilt docker image [quay.io/oauth2-proxy/oauth2-proxy](https://quay.io/oauth2-proxy/oauth2-proxy) (AMD64, ARMv6 and ARM64 tags available)
14
15    d. Using a [Kubernetes manifest](https://github.com/oauth2-proxy/manifests) (Helm)
16
17Prebuilt binaries can be validated by extracting the file and verifying it against the `sha256sum.txt` checksum file provided for each release starting with version `v3.0.0`.
18
19```
20$ sha256sum -c sha256sum.txt
21oauth2-proxy-x.y.z.linux-amd64: OK
22```
23
242.  [Select a Provider and Register an OAuth Application with a Provider](configuration/auth.md)
253.  [Configure OAuth2 Proxy using config file, command line options, or environment variables](configuration/overview.md)
264.  [Configure SSL or Deploy behind a SSL endpoint](configuration/tls.md) (example provided for Nginx)
27