Files
ansible-lemp-wordpress/.github/ISSUE_TEMPLATE/bug_report.yml
Sebastian Palencsar dffd8e3b76 feat: v2.5.0 - Complete Technology & Security Update
Features:
- PHP 8.4 support (from 8.3)
- WordPress 7.0 (auto-update via WP-CLI)
- Modern TLS 1.3 cipher suites (2026 best practices)
- Fail2Ban security integration (5 jails: SSH, Nginx, WordPress, recidive)
- Auto-update cron job for WordPress (weekly Minor updates)
- Debian 14 Forky support (testing)
- Ubuntu 25.04 support
- Python 3.12 in GitHub Actions

Security:
- Fail2Ban with SSH brute force protection (24h ban)
- WordPress wp-login.php protection (2h ban)
- Nginx bot scanner protection
- Recidive jail for repeat offenders (1 week ban)
- Modern TLS ciphers (AEAD only)
- HSTS 2 years for preload

Documentation:
- docs/autoupdate.md - WordPress auto-update guide
- docs/fail2ban.md - Fail2Ban configuration guide
- docs/troubleshooting.md - Updated with php_version variable

Breaking changes:
- PHP 8.4 is now the default (requires Ubuntu 20.04+ or Debian 11+)
2026-05-04 19:37:27 +02:00

108 lines
2.7 KiB
YAML
Executable File

name: 🐛 Bug Report
description: File a bug report to help us improve
title: "[BUG] "
labels: ["bug", "needs-triage"]
assignees: []
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! Please provide as much detail as possible.
- type: checkboxes
id: terms
attributes:
label: Pre-check
description: Please confirm you have done the following
options:
- label: I have searched existing issues to make sure this is not a duplicate
required: true
- label: I have read the documentation and troubleshooting guide
required: true
- type: dropdown
id: environment
attributes:
label: Environment
description: What environment are you deploying to?
options:
- Docker (testing)
- Ubuntu Server
- Debian Server
- CentOS/RHEL/Rocky Linux
- Cloud Instance (AWS/GCP/Azure)
- VPS
- Bare Metal
- Other
validations:
required: true
- type: input
id: os-version
attributes:
label: OS Version
description: "Example: Ubuntu 24.04 LTS, CentOS Stream 9"
placeholder: "Ubuntu 24.04 LTS"
validations:
required: true
- type: input
id: ansible-version
attributes:
label: Ansible Version
description: Output of `ansible --version`
placeholder: "ansible [core 2.15.0]"
validations:
required: true
- type: textarea
id: what-happened
attributes:
label: Bug Description
description: A clear and concise description of what the bug is
placeholder: Describe what happened...
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behavior
description: What you expected to happen
placeholder: Describe what should have happened...
validations:
required: true
- type: textarea
id: steps
attributes:
label: Steps to Reproduce
description: Steps to reproduce the behavior
placeholder: |
1. Run command '...'
2. See error '...'
3. Check log '...'
validations:
required: true
- type: textarea
id: logs
attributes:
label: Relevant Log Output
description: Please copy and paste any relevant log output (ansible-playbook -vv output, error logs, etc.)
render: shell
- type: textarea
id: config
attributes:
label: Configuration
description: Your inventory file and any custom variables (please remove sensitive information)
render: yaml
- type: textarea
id: additional
attributes:
label: Additional Context
description: Add any other context about the problem here