23 lines
835 B
Plaintext
23 lines
835 B
Plaintext
# Public Agent Skills metadata is stored outside the frontend release tree so
|
|
# application deployments cannot overwrite it.
|
|
location = /.well-known/agent-skills/index.json {
|
|
alias /home/crypstie/agent-skills/index.json;
|
|
default_type application/json;
|
|
add_header Cache-Control "public, max-age=300";
|
|
add_header Access-Control-Allow-Origin "*" always;
|
|
}
|
|
|
|
location = /.well-known/agent-skills/crypstie/SKILL.md {
|
|
alias /home/crypstie/agent-skills/crypstie/SKILL.md;
|
|
default_type text/markdown;
|
|
add_header Cache-Control "public, max-age=300";
|
|
add_header Access-Control-Allow-Origin "*" always;
|
|
}
|
|
|
|
location = /llms.txt {
|
|
alias /home/crypstie/agent-skills/llms.txt;
|
|
default_type text/plain;
|
|
add_header Cache-Control "public, max-age=300";
|
|
add_header Access-Control-Allow-Origin "*" always;
|
|
}
|