This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-06-08 21:10:17 +00:00
|
|
|
---
|
|
|
|
title: Proxy Outpost
|
|
|
|
---
|
|
|
|
|
|
|
|
The proxy outpost sets the following headers:
|
|
|
|
|
|
|
|
```
|
|
|
|
X-Auth-Username: akadmin # The username of the currently logged in user
|
|
|
|
X-Forwarded-Email: root@localhost # The email address of the currently logged in user
|
|
|
|
X-Forwarded-Preferred-Username: akadmin # The username of the currently logged in user
|
|
|
|
X-Forwarded-User: 900347b8a29876b45ca6f75722635ecfedf0e931c6022e3a29a8aa13fb5516fb # The hashed identifier of the currently logged in user.
|
|
|
|
```
|
|
|
|
|
|
|
|
Additionally, you can set `additionalHeaders` on groups or users to set additional headers.
|
|
|
|
|
|
|
|
If you enable *Set HTTP-Basic Authentication* option, the HTTP Authorization header is being set.
|
|
|
|
|
|
|
|
# HTTPS
|
|
|
|
|
|
|
|
The outpost listens on both 4180 for HTTP and 4443 for HTTPS.
|
|
|
|
|
|
|
|
:::info
|
|
|
|
If your upstream host is HTTPS, and you're not using forward auth, you need to access the outpost over HTTPS too.
|
|
|
|
:::
|
2021-07-06 12:26:11 +00:00
|
|
|
|
|
|
|
# Logging out
|
|
|
|
|
|
|
|
Login is done automatically when you visit the domain without a valid cookie.
|
|
|
|
|
|
|
|
When using single-application mode, navigate to `app.domain.tld/akprox/sign_out`.
|
|
|
|
|
|
|
|
When using domain-level mode, navigate to `auth.domain.tld/akprox/sign_out`, where auth.domain.tld is the external host configured for the provider.
|
|
|
|
|
|
|
|
To log out, navigate to `/akprox/sign_out`.
|