Tweaks to Icons and Such #3

Merged
mifi merged 2 commits from develop into main 2026-02-06 22:40:46 +00:00
2 changed files with 7 additions and 1 deletions
Showing only changes of commit 7a7dbf635d - Show all commits

View File

@@ -108,7 +108,12 @@ http {
try_files $uri $uri/ /index.html; try_files $uri $uri/ /index.html;
} }
# Deny access to hidden files (.git, .env, etc.) # Allow .well-known (security.txt, ACME challenge, etc.)
location ^~ /.well-known/ {
add_header Cache-Control "public, max-age=86400";
}
# Deny access to other hidden files (.git, .env, etc.)
location ~ /\. { location ~ /\. {
deny all; deny all;
access_log off; access_log off;

View File

@@ -2,6 +2,7 @@ import { defineConfig, devices } from '@playwright/test';
export default defineConfig({ export default defineConfig({
testDir: 'tests', testDir: 'tests',
testMatch: /.*\.spec\.(ts|js)/,
fullyParallel: true, fullyParallel: true,
forbidOnly: !!process.env.CI, forbidOnly: !!process.env.CI,
retries: process.env.CI ? 2 : 0, retries: process.env.CI ? 2 : 0,