feat: update TLS configuration to enforce modern cipher suites and TLS 1.3

The TLS configuration has been updated to enforce modern cipher suites and TLS 1.3, removing deprecated protocols and weak ciphers. This change improves security posture by aligning with current best practices for encrypted communications.
This commit is contained in:
2025-11-11 14:06:02 +00:00
parent 38c733cb12
commit cf7819d233
7 changed files with 87 additions and 13 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ class PhotoGallery extends HTMLElement {
async renderPhotos() {
const grid = this.querySelector('.gallery-grid');
if (this.photos.length === 0) {
grid.innerHTML = '<p class="empty-state">No photos yet</p>';
grid.innerHTML = '<p class="empty-state">No photos found.</p>';
return;
}