emptygif
ภาษา: ไทย

ภาษาและเฟรมเวิร์กทั้งหมด

Caddy Caddyfile

ตัวอย่างโค้ด Caddyfile สำหรับ Caddy ที่ตอบคำขอไปยัง /pixel.gif ด้วย GIF ว่าง ซึ่งถอดรหัสเพียงครั้งเดียวตอนเริ่มทำงาน

Caddy Caddyfile

ไฟล์
Caddyfile
รัน
caddy run
# respond can't emit binary, so serve a file. Write it once:
#   printf '%b' '\x47\x49\x46\x38\x39\x61\x01\x00\x01\x00\x80\x00\x00\xff\xff\xff\x00\x00\x00\x21\xf9\x04\x01\x00\x00\x00\x00\x2c\x00\x00\x00\x00\x01\x00\x01\x00\x00\x02\x02\x44\x01\x00\x3b' > /srv/pixel.gif
:8080 {
    handle /pixel.gif {
        root * /srv
        rewrite * /pixel.gif
        header Cache-Control "no-store"
        file_server
    }
}

เรารันตัวอย่างโค้ดนี้และเทียบไบต์ที่ได้กลับมาแล้ว

ตรวจสอบ

curl -sI http://localhost:8080/pixel.gif

เว็บไซต์ทางการ: Caddy