Skip to content

Commit

Permalink
Release 6.2.15 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Dec 24, 2022
1 parent 3f64048 commit cd14ae6
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 6.2.15 2022-12-24 <dave at tiredofit dot ca>

### Changed
- Tweak site_optimization configuration file to serve "text/plain" and allow .well-known responses


## 6.2.14 2022-12-20 <dave at tiredofit dot ca>

### Changed
Expand Down
9 changes: 7 additions & 2 deletions install/etc/nginx/snippets/site_optimization.conf
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,13 @@
access_log off;
}

# deny dot-files
location ~ /\. {

location /.well-known {
default_type text/plain;
}

## Disable .htaccess and other hidden files
location ~ /\.(?!well-known).* {
deny all;
access_log off;
log_not_found off;
Expand Down

0 comments on commit cd14ae6

Please sign in to comment.