# Plain-Text Headers

Perhaps you already have a homegrown solution that will authenticate your users, like an Apache or Nginx module. ConsoleMe can be configured to extract a user and their groups from plain text headers provided by these modules.

{% hint style="warning" %}
These headers are sensitive, and you'll need to ensure the web server that you have in front of ConsoleMe drops these headers if the user passes them with their request
{% endhint %}

ConsoleMe expects the groups header to be a comma separated list of the user's groups.

We have an example configuration [here](https://github.com/Netflix/consoleme/blob/master/example_config/example_config_alb_auth.yaml).

```
auth:
  get_groups_by_header: true
  get_user_by_header: true
  groups_header_name: group_header
  user_header_name: user_header
```

�


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hawkins.gitbook.io/consoleme/configuration/authentication-and-authorization/apache-nginx-headers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
