<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Shelley-Agent on AI Engineer Guide</title><link>https://aiengineerguide.com/tags/shelley-agent/</link><description>Recent content in Shelley-Agent on AI Engineer Guide</description><generator>Hugo</generator><language>en-US</language><copyright>Copyright © 2024-2026, Nesin Technologies LLP.</copyright><lastBuildDate>Sun, 02 Aug 2026 00:00:00 +0000</lastBuildDate><atom:link href="https://aiengineerguide.com/tags/shelley-agent/feed.xml" rel="self" type="application/rss+xml"/><item><title>How to use custom domain for Shelley on exe.dev</title><link>https://aiengineerguide.com/til/custom-domain-shelley-exe-dev/</link><pubDate>Sun, 02 Aug 2026 00:00:00 +0000</pubDate><guid>https://aiengineerguide.com/til/custom-domain-shelley-exe-dev/</guid><description>&lt;p>Recently, I&amp;rsquo;ve started using VM by &lt;a href="https://exe.dev">exe.dev&lt;/a> as my primary development setup. And they come up with &lt;a href="https://github.com/boldsoftware/shelley">Shelley Agent&lt;/a> which you can access at &lt;code>your-vm.shelley.exe.xyz&lt;/code>&lt;/p>
&lt;p>But if you prefer to access it via a custom domain you can do so by proxying the request to port &lt;strong>9999&lt;/strong>&lt;/p>
&lt;p>In my case, I&amp;rsquo;m using ngix but you can use any web server.&lt;/p>
&lt;p>Here is my ngix config for your reference&lt;/p>
&lt;pre tabindex="0">&lt;code class="language-conf" data-lang="conf">server {
 listen 8000;
 listen [::]:8000;
 server_name shelley.example.com;

 location / {
 proxy_pass http://127.0.0.1:9999;
 proxy_set_header Host $host;
 proxy_set_header X-Real-IP $remote_addr;
 proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
 proxy_set_header X-Forwarded-Proto $scheme;

 # WebSocket / Vite HMR upgrade
 proxy_http_version 1.1;
 proxy_set_header Upgrade $http_upgrade;
 proxy_set_header Connection $connection_upgrade;
 proxy_read_timeout 86400;
 }
}
&lt;/code>&lt;/pre>&lt;p>Just ask Shelley Agent to do it. And it can do it for you!&lt;/p></description></item></channel></rss>