🚚(frontend) rename "wellknown" directory to "well-known"

Fix a typo introduced while configuring the correct directory for
automatic container view opening on Windows.
This commit is contained in:
lebaudantoine
2026-02-23 20:12:40 +01:00
committed by aleb_the_flash
parent ddb81765f3
commit 1c1d1938d9
3 changed files with 3 additions and 2 deletions

View File

@@ -18,6 +18,7 @@ and this project adheres to
- 🔒️(frontend) uninstall curl from the frontend production image #987
- 💄(frontend) add focus ring to reaction emoji buttons
- ✨(frontend) introduce a shortcut settings tab #975
- 🚚(frontend) rename "wellknown" directory to "well-known" #1009
## [1.8.0] - 2026-02-20

View File

@@ -5,9 +5,9 @@ server {
root /usr/share/nginx/html;
location = /.wellknown/windows-app-web-link {
location = /.well-known/windows-app-web-link {
default_type application/json;
alias /usr/share/nginx/html/.wellknown/windows-app-web-link;
alias /usr/share/nginx/html/.well-known/windows-app-web-link;
add_header Content-Disposition "attachment; filename=windows-app-web-link";
}