hmn/server/Caddyfile

24 lines
447 B
Caddyfile
Raw Normal View History

2021-08-28 20:36:52 +00:00
{
acme_dns cloudflare <CLOUDFLARE KEY>
order cgi last
}
<DOMAIN>, *.<DOMAIN> {
handle /public/* {
file_server {
root /home/hmn/hmn
}
header {
Access-Control-Allow-Origin *
Access-Control-Allow-Methods "GET, OPTIONS"
}
2021-08-28 20:36:52 +00:00
}
handle {
reverse_proxy localhost:9001
}
}
srv.<DOMAIN>:8888 {
cgi /deploy /home/hmn/hmn/server/deploy_hook.sh <BRANCH>
}