Skip to content

Commit

Permalink
v8.15
Browse files Browse the repository at this point in the history
- DietPi-Software | Pi-hole: Resolved an issue where Nginx, if chosen as webserver, failed to start due to an invalid variable. Many thanks to @Trimble-tech for reporting this issue: https://dietpi.com/forum/t/pi-hole-install-crashes-nginx/15960
  • Loading branch information
MichaIng committed Feb 15, 2023
1 parent f3e13c5 commit 5eddfef
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .conf/dps_93/nginx.pihole.conf
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ location ~ ^(?:/html|)/admin(?:$|/) {
add_header X-Pi-hole "The Pi-hole Web interface is working!";
add_header X-Content-Type-Options "nosniff";
set $frame_options "deny";
add_header X-Frame-Options "$frame_option";
add_header X-Frame-Options "$frame_options";
add_header X-XSS-Protection "1; mode=block";
add_header X-Robots-Tag "noindex, nofollow";
add_header X-Permitted-Cross-Domain-Policies "none";
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Enhancements:
Bug fixes:
- Quartz64 | Resolved an issue where the system boots read-only on very first boot. Many thanks to @belveder79 for reporting this issue: https://github.com/MichaIng/DietPi/issues/6149
- DietPi-Software | Docker Compose: Resolved an issue where installing and uninstalling Docker Compose could have failed if pip was installed without the distutils module. Many thanks to @bccarbone for reporting this issue: https://github.com/MichaIng/DietPi/issues/6153
- DietPi-Software | Pi-hole: Resolved an issue where Nginx, if chosen as webserver, failed to start due to an invalid variable. Many thanks to @Trimble-tech for reporting this issue: https://dietpi.com/forum/t/pi-hole-install-crashes-nginx/15960

As always, many smaller code performance and stability improvements, visual and spelling fixes have been done, too much to list all of them here. Check out all code changes of this release on GitHub: https://github.com/MichaIng/DietPi/pull/XXXX

Expand Down

2 comments on commit 5eddfef

@Trimble-tech
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm glad my bug report could contribute toward v8.15!

@MichaIng
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I backported this for v8.14 as well, as it affects only a file which is downloaded during install anyway.

Please sign in to comment.