This page was contributed by a member of the AMP community
To use Caddy with AMP you can download the latest version from https://caddyserver.com/ or compile it yourself.
The configuration file below is experimental but should work, just change the domain at the top to yours. Caddy automatically handles Let’s Encrypt certificates and requires port 80 or 443 to complete the challenge.
The configuration file should be named Caddyfile
(with no extension like .txt
at the end) and is put in the same directory as the executable. Run caddy fmt --overwrite
to format the Caddyfile. Caddy will then automatically load it. You can start Caddy with caddy start
Linux example configuration
amp.example.com {
handle_path /shared/* {
root * /opt/cubecoders/amp/shared/WebRoot/
file_server
}
reverse_proxy localhost:8080
handle_errors 502 {
root * /opt/cubecoders/amp/shared/WebRoot
rewrite /NotRunning.html
file_server
}
}
Windows example configuration
amp.example.com {
reverse_proxy localhost:8080
}