Skip to content
  1. Feb 22, 2019
  2. Feb 13, 2019
  3. Feb 11, 2019
  4. Feb 08, 2019
  5. Feb 02, 2019
  6. Jan 31, 2019
  7. Jan 22, 2019
  8. Jan 14, 2019
  9. Jan 08, 2019
  10. Dec 20, 2018
  11. Nov 27, 2018
  12. Mar 02, 2018
  13. Dec 19, 2017
  14. Dec 05, 2017
  15. Nov 22, 2017
  16. Nov 07, 2017
  17. Oct 08, 2017
  18. Sep 09, 2017
    • Eric Chiang's avatar
      *: add an OpenID Connect provider · cb48577e
      Eric Chiang authored
      See the README for usage with Dex or any other OIDC provider.
      
      To test run a backend:
      
          python3 -m http.server
      
      Run dex and modify the example config with the proxy callback:
      
          go get github.com/coreos/dex/cmd/dex
          cd $GOPATH/src/github.com/coreos/dex
          sed -i.bak \
            's|http://127.0.0.1:5555/callback|http://127.0.0.1:5555/oauth2/callback|g' \
             examples/config-dev.yaml
          make
          ./bin/dex serve examples/config-dev.yaml
      
      Then run the oauth2_proxy
      
          oauth2_proxy \
            --oidc-issuer-url http://127.0.0.1:5556/dex \
            --upstream http://localhost:8000 \
            --client-id example-app \
            --client-secret ZXhhbXBsZS1hcHAtc2VjcmV0 \
            --cookie-secret foo \
            --email-domain '*' \
            --http-address http://127.0.0.1:5555 \
            --redirect-url http://127.0.0.1:5555/oauth2/callback \
            --cookie-secure=false
      
      Login with the username/password "admin@example.com:password"
      cb48577e
  19. Sep 06, 2017
  20. Jul 20, 2017
  21. Jun 29, 2017
  22. Jun 21, 2017
  23. Jun 10, 2017
  24. Apr 25, 2017
  25. Apr 07, 2017
  26. Mar 29, 2017