Skip to content

Commit a66f7c5

Browse files
authored
Merge pull request bitly#193 from jehiah/release_193
A new tag
2 parents 4c6b579 + 671f00e commit a66f7c5

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Godeps

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
github.com/18F/hmacauth 1.0.1
22
github.com/BurntSushi/toml 3883ac1ce943878302255f538fce319d23226223
33
github.com/bitly/go-simplejson 3378bdcb5cebedcbf8b5750edee28010f128fe24
4-
github.com/mreiferson/go-options ee94b57f2fbf116075426f853e5abbcdfeca8b3d
4+
github.com/mreiferson/go-options 33795234b6f327f1be2d78a541893012362a4e06
55
github.com/bmizerany/assert e17e99893cb6509f428e1728281c2ad60a6b31e3
66
gopkg.in/fsnotify.v1 v1.2.0
77
golang.org/x/oauth2 397fe7649477ff2e8ced8fc0b2696f781e53745a

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ to validate accounts by email, domain or group.
1717

1818
## Installation
1919

20-
1. Download [Prebuilt Binary](https://github.com/bitly/oauth2_proxy/releases) (current release is `v2.0.1`) or build with `$ go get github.com/bitly/oauth2_proxy` which will put the binary in `$GOROOT/bin`
20+
1. Download [Prebuilt Binary](https://github.com/bitly/oauth2_proxy/releases) (current release is `v2.1`) or build with `$ go get github.com/bitly/oauth2_proxy` which will put the binary in `$GOROOT/bin`
2121
2. Select a Provider and Register an OAuth Application with a Provider
2222
3. Configure OAuth2 Proxy using config file, command line options, or environment variables
2323
4. Configure SSL or Deploy behind a SSL endpoint (example provided for Nginx)
@@ -149,6 +149,8 @@ To authorize by email domain use `--email-domain=yourcompany.com`. To authorize
149149

150150
`oauth2_proxy` can be configured via [config file](#config-file), [command line options](#command-line-options) or [environment variables](#environment-variables).
151151

152+
To generate a strong cookie secret use `python -c 'import os,base64; print base64.b64encode(os.urandom(16))'`
153+
152154
### Config File
153155

154156
An example [oauth2_proxy.cfg](contrib/oauth2_proxy.cfg.example) config file is in the contrib directory. It can be used by specifying `-config=/etc/oauth2_proxy.cfg`

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
package main
22

3-
const VERSION = "2.0.1"
3+
const VERSION = "2.1"

0 commit comments

Comments
 (0)