110 lines
3.4 KiB
Cheetah
110 lines
3.4 KiB
Cheetah
---
|
|
name: Bug Report
|
|
description: Report a bug
|
|
labels:
|
|
{{- range .Labels }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
body:
|
|
- type: markdown
|
|
attributes:
|
|
value: |
|
|
Thanks for taking the time to fill out this bug report. If you are unsure if this is actually a bug we generally recommend creating a [Question and Answer Discussion](https://github.com/authelia/authelia/discussions/new?category=q-a) first.
|
|
|
|
Please review the following requirements before submitting this issue type:
|
|
|
|
1. Please ensure you do not report security vulnerabilities via this method. See our [Security Policy](https://www.authelia.com/security-policy).
|
|
2. Please try to give as much information as possible for us to be able to reproduce the issue and provide a quick fix.
|
|
3. Please ensure an issue does not already exist for this potential bug.
|
|
4. Please only provide specific versions. Latest is not a version.
|
|
5. Please read the [Troubleshooting Sanitization](https://www.authelia.com/r/sanitize) reference guide if you plan on removing or adjusting any values for the logs or configuration files.
|
|
6. Please consider including a [HTTP Archive File](https://www.authelia.com/r/har) if you're having redirection issues.
|
|
- type: dropdown
|
|
id: version
|
|
attributes:
|
|
label: Version
|
|
description: What version(s) of Authelia can you reproduce this bug on?
|
|
multiple: true
|
|
options:
|
|
{{- range .Versions }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: deployment
|
|
attributes:
|
|
label: Deployment Method
|
|
description: How are you deploying Authelia?
|
|
options:
|
|
- Docker
|
|
- Kubernetes
|
|
- Bare-metal
|
|
- Other
|
|
validations:
|
|
required: true
|
|
- type: dropdown
|
|
id: proxy
|
|
attributes:
|
|
label: Reverse Proxy
|
|
description: What reverse proxy are you using?
|
|
options:
|
|
{{- range .Proxies }}
|
|
- {{ . }}
|
|
{{- end }}
|
|
validations:
|
|
required: true
|
|
- type: input
|
|
id: proxy-version
|
|
attributes:
|
|
label: Reverse Proxy Version
|
|
description: What is the version of your reverse proxy?
|
|
placeholder: x.x.x
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: description
|
|
attributes:
|
|
label: Description
|
|
description: Describe the bug
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: reproduction
|
|
attributes:
|
|
label: Reproduction
|
|
description: Describe how we can reproduce this issue
|
|
validations:
|
|
required: true
|
|
- type: textarea
|
|
id: expectations
|
|
attributes:
|
|
label: Expectations
|
|
description: Describe the desired or expected results
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: logs
|
|
attributes:
|
|
label: Logs
|
|
description: Provide the logs (the template will automatically put this content in a code block)
|
|
render: shell
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: configuration
|
|
attributes:
|
|
label: Configuration
|
|
description: Provide the Authelia configuration file (the template will automatically put this content in a code block)
|
|
render: yaml
|
|
validations:
|
|
required: false
|
|
- type: textarea
|
|
id: documentation
|
|
attributes:
|
|
label: Documentation
|
|
description: Provide any relevant specification or other documentation if applicable
|
|
validations:
|
|
required: false
|
|
...
|