16 lines
279 B
Caddyfile
16 lines
279 B
Caddyfile
:8080 {
|
|
root * /srv
|
|
encode gzip
|
|
|
|
# SPA fallback — toutes les routes inconnues renvoient index.html
|
|
try_files {path} /index.html
|
|
|
|
file_server
|
|
|
|
header {
|
|
-Server
|
|
X-Content-Type-Options "nosniff"
|
|
X-Frame-Options "SAMEORIGIN"
|
|
}
|
|
}
|