
* initial subpath support Signed-off-by: Jens Langhammer <jens@goauthentik.io> * make outpost compatible Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix static files somewhat Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix web interface Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix most static stuff Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix most web links Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix websocket Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix URL for static files Signed-off-by: Jens Langhammer <jens@goauthentik.io> * format web Signed-off-by: Jens Langhammer <jens@goauthentik.io> * add root redirect for subpath Signed-off-by: Jens Langhammer <jens@goauthentik.io> * update docs Signed-off-by: Jens Langhammer <jens@goauthentik.io> * set cookie path Signed-off-by: Jens Langhammer <jens@goauthentik.io> * Update internal/config/struct.go Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space> Signed-off-by: Jens L. <jens@beryju.org> * fix sfe Signed-off-by: Jens Langhammer <jens@goauthentik.io> * bump required version Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix flow background Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix lint and some more links Signed-off-by: Jens Langhammer <jens@goauthentik.io> * format Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix impersonate Signed-off-by: Jens Langhammer <jens@goauthentik.io> * fix Signed-off-by: Jens Langhammer <jens@goauthentik.io> --------- Signed-off-by: Jens Langhammer <jens@goauthentik.io> Signed-off-by: Jens L. <jens@beryju.org> Signed-off-by: Jens L. <jens@goauthentik.io> Co-authored-by: Marc 'risson' Schmitt <marc.schmitt@risson.space>
83 lines
2.5 KiB
Go
83 lines
2.5 KiB
Go
package web
|
|
|
|
import (
|
|
"encoding/json"
|
|
"errors"
|
|
"fmt"
|
|
"net/http"
|
|
"net/http/httputil"
|
|
"time"
|
|
|
|
"github.com/prometheus/client_golang/prometheus"
|
|
"goauthentik.io/internal/config"
|
|
"goauthentik.io/internal/utils/sentry"
|
|
)
|
|
|
|
func (ws *WebServer) configureProxy() {
|
|
// Reverse proxy to the application server
|
|
director := func(req *http.Request) {
|
|
req.URL.Scheme = ws.upstreamURL.Scheme
|
|
req.URL.Host = ws.upstreamURL.Host
|
|
if _, ok := req.Header["User-Agent"]; !ok {
|
|
// explicitly disable User-Agent so it's not set to default value
|
|
req.Header.Set("User-Agent", "")
|
|
}
|
|
if req.TLS != nil {
|
|
req.Header.Set("X-Forwarded-Proto", "https")
|
|
}
|
|
ws.log.WithField("url", req.URL.String()).WithField("headers", req.Header).Trace("tracing request to backend")
|
|
}
|
|
rp := &httputil.ReverseProxy{
|
|
Director: director,
|
|
Transport: ws.upstreamHttpClient().Transport,
|
|
}
|
|
rp.ErrorHandler = ws.proxyErrorHandler
|
|
rp.ModifyResponse = ws.proxyModifyResponse
|
|
ws.mainRouter.PathPrefix(config.Get().Web.Path).Path("/-/health/live/").HandlerFunc(sentry.SentryNoSample(func(rw http.ResponseWriter, r *http.Request) {
|
|
rw.WriteHeader(204)
|
|
}))
|
|
ws.mainRouter.PathPrefix(config.Get().Web.Path).HandlerFunc(sentry.SentryNoSample(func(rw http.ResponseWriter, r *http.Request) {
|
|
if !ws.g.IsRunning() {
|
|
ws.proxyErrorHandler(rw, r, errors.New("authentik starting"))
|
|
return
|
|
}
|
|
before := time.Now()
|
|
if ws.ProxyServer != nil && ws.ProxyServer.HandleHost(rw, r) {
|
|
elapsed := time.Since(before)
|
|
Requests.With(prometheus.Labels{
|
|
"dest": "embedded_outpost",
|
|
}).Observe(float64(elapsed) / float64(time.Second))
|
|
return
|
|
}
|
|
elapsed := time.Since(before)
|
|
Requests.With(prometheus.Labels{
|
|
"dest": "core",
|
|
}).Observe(float64(elapsed) / float64(time.Second))
|
|
r.Body = http.MaxBytesReader(rw, r.Body, 32*1024*1024)
|
|
rp.ServeHTTP(rw, r)
|
|
}))
|
|
}
|
|
|
|
func (ws *WebServer) proxyErrorHandler(rw http.ResponseWriter, req *http.Request, err error) {
|
|
ws.log.WithError(err).Warning("failed to proxy to backend")
|
|
rw.WriteHeader(http.StatusBadGateway)
|
|
em := fmt.Sprintf("failed to connect to authentik backend: %v", err)
|
|
// return json if the client asks for json
|
|
if req.Header.Get("Accept") == "application/json" {
|
|
err = json.NewEncoder(rw).Encode(map[string]string{
|
|
"error": em,
|
|
})
|
|
} else {
|
|
_, err = rw.Write([]byte(em))
|
|
}
|
|
if err != nil {
|
|
ws.log.WithError(err).Warning("failed to write error message")
|
|
}
|
|
}
|
|
|
|
func (ws *WebServer) proxyModifyResponse(r *http.Response) error {
|
|
r.Header.Set("X-Powered-By", "authentik")
|
|
r.Header.Del("Server")
|
|
return nil
|
|
}
|