Some checks are pending
CI / Lint and Format (push) Waiting to run
CI / Test Python 3.11 on macos-latest (push) Waiting to run
CI / Test Python 3.12 on macos-latest (push) Waiting to run
CI / Test Python 3.13 on macos-latest (push) Waiting to run
CI / Test Python 3.10 on ubuntu-latest (push) Waiting to run
CI / Test Python 3.11 on ubuntu-latest (push) Waiting to run
CI / Test Python 3.12 on ubuntu-latest (push) Waiting to run
CI / Test Python 3.13 on ubuntu-latest (push) Waiting to run
CI / Security Scan (push) Waiting to run
CI / Build Package (push) Blocked by required conditions
Scenario-driven homepage that introduces mckicad through what engineers actually say when they sit down to work. Removes the root redirect so / serves index.html directly.
12 lines
307 B
Caddyfile
12 lines
307 B
Caddyfile
:80 {
|
|
root * /srv
|
|
file_server
|
|
try_files {path} {path}/index.html {path}/
|
|
|
|
@nocache path /robots.txt /sitemap-index.xml /sitemap-*.xml
|
|
header @nocache Cache-Control "no-cache, max-age=0"
|
|
|
|
@hashed path /_astro/*
|
|
header @hashed Cache-Control "public, max-age=31536000, immutable"
|
|
}
|