Monorepo for Aesthetic.Computer aesthetic.computer
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

lith Caddy: serve prompt.ac/menuband without redirect

Path-specific exception inside the @promptac handle: /menuband* serves
the static files from /opt/ac/system/public directly, so the menuband
landing page renders under either prompt.ac or aesthetic.computer.
Everything else under prompt.ac still 301s to aesthetic.computer.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>

+7
+7
lith/Caddyfile
··· 392 392 } 393 393 394 394 # --- prompt.ac → aesthetic.computer (301 redirect) --- 395 + # /menuband is served directly (no redirect) so the landing page 396 + # works under either domain. Everything else still bounces. 395 397 @promptac host prompt.ac 396 398 handle @promptac { 399 + handle /menuband* { 400 + root * /opt/ac/system/public 401 + try_files {path} {path}/index.html 402 + file_server 403 + } 397 404 redir https://aesthetic.computer{uri} 301 398 405 } 399 406