32 lines
633 B
TOML
32 lines
633 B
TOML
name = "ailog"
|
|
compatibility_date = "2024-01-01"
|
|
|
|
[env.production]
|
|
name = "ailog"
|
|
|
|
[build]
|
|
command = "cargo build --release && ./target/release/ailog build my-blog"
|
|
publish = "my-blog/public"
|
|
|
|
[[redirects]]
|
|
from = "/api/ask"
|
|
to = "https://ai-gpt-mcp.your-domain.com/ask"
|
|
status = 200
|
|
|
|
[[headers]]
|
|
for = "/*"
|
|
[headers.values]
|
|
X-Frame-Options = "DENY"
|
|
X-Content-Type-Options = "nosniff"
|
|
Referrer-Policy = "strict-origin-when-cross-origin"
|
|
|
|
[[headers]]
|
|
for = "/css/*"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=31536000, immutable"
|
|
|
|
[[headers]]
|
|
for = "*.js"
|
|
[headers.values]
|
|
Cache-Control = "public, max-age=31536000, immutable"
|