For AI agents: the documentation index is at llms.txt. Markdown versions are available by appending .md to any page URL, including this page's markdown.
Proxy /docs through Nginx
Add Nginx location blocks to reverse-proxy /docs and /_docs on your domain to an Edda site while keeping the rest of your site on your server.
Drop this block into your Nginx server config to host docs under
yourdomain.com/docs.
Server block
location /docs/ {
proxy_pass https://acme.blode.md/;
proxy_set_header Host acme.blode.md;
proxy_set_header X-Forwarded-Host $host;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Real-IP $remote_addr;
proxy_ssl_server_name on;
proxy_http_version 1.1;
proxy_buffering
Published with Edda