<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: AiPo</title>
    <description>The latest articles on DEV Community by AiPo (@aipo-ailenshow).</description>
    <link>https://dev.to/aipo-ailenshow</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4000703%2F18a1f6db-e441-4d2d-be50-71373b84762d.jpg</url>
      <title>DEV Community: AiPo</title>
      <link>https://dev.to/aipo-ailenshow</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/aipo-ailenshow"/>
    <language>en</language>
    <item>
      <title>EdgeNest: a self-hosted proxy panel in a single Go binary (sing-box + Xray)</title>
      <dc:creator>AiPo</dc:creator>
      <pubDate>Wed, 24 Jun 2026 14:11:33 +0000</pubDate>
      <link>https://dev.to/aipo-ailenshow/edgenest-a-self-hosted-proxy-panel-in-a-single-go-binary-sing-box-xray-c0j</link>
      <guid>https://dev.to/aipo-ailenshow/edgenest-a-self-hosted-proxy-panel-in-a-single-go-binary-sing-box-xray-c0j</guid>
      <description>&lt;p&gt;&lt;strong&gt;EdgeNest&lt;/strong&gt; is an open-source (AGPL-3.0) self-hosted panel for running your own proxy node on a VPS. It's a single Go binary with the React UI embedded — one command brings up the panel, subscription delivery, and the proxy engines together.&lt;/p&gt;

&lt;p&gt;Repo: &lt;a href="https://github.com/aipo-lenshow/EdgeNest" rel="noopener noreferrer"&gt;https://github.com/aipo-lenshow/EdgeNest&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Why I built it
&lt;/h2&gt;

&lt;p&gt;I run a few nodes for myself and family across different VPS providers, and I got tired of three things: hand-editing sing-box / Xray JSON, juggling TLS certificates, and walking non-technical people through importing a config by hand.&lt;/p&gt;

&lt;p&gt;Existing panels are good, but I wanted one that does two things differently:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Runs &lt;strong&gt;sing-box and Xray at the same time&lt;/strong&gt;, in one binary.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Helps you choose&lt;/strong&gt; what to deploy, instead of dumping every protocol option on you and assuming you know the tradeoffs.&lt;/li&gt;
&lt;/ol&gt;

&lt;h2&gt;
  
  
  What it does
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Two engines, one binary&lt;/strong&gt; — sing-box (default) + Xray side by side, for 11 inbound protocols total: VLESS-Reality, VLESS-WS, VMess-WS, Trojan-TLS, Hysteria2, TUIC v5, Shadowsocks-2022, AnyTLS, SOCKS5, plus VLESS-XHTTP-Reality / -TLS on Xray.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Setup wizard&lt;/strong&gt; — pick your use case and your client, and it recommends a protocol mix.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Per-client subscriptions&lt;/strong&gt; — generates links in each client's own format (Shadowrocket, v2rayN, V2RayNG, Hiddify, Stash, Surge, sing-box, Karing, Mihomo Party, Loon, Quantumult X…), so they connect on import with zero manual editing.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Multi-user&lt;/strong&gt; — per-user credentials, traffic quotas, expiry dates, resets.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Outbound optimization&lt;/strong&gt; — CDN preferred-IP, Argo tunnels, WARP outbound, one tap each.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;One-click category routing&lt;/strong&gt; — route AI / streaming / dev-tools / ad-block traffic to WARP / direct / block. It can also capture the domains you actually hit in real time and turn them into routing rules.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Ops &amp;amp; security&lt;/strong&gt; — Let's Encrypt (HTTP or DNS validation), self-signed certs out of the box, IPv4/IPv6 dual stack, a Telegram management bot, encrypted backup/restore, and a firewall that only opens the ports actually in use.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Stack
&lt;/h2&gt;

&lt;p&gt;Go + Gin backend, React/TS/Vite/Tailwind/shadcn-ui frontend embedded into the binary, SQLite via a pure-Go driver (no CGO), ACME via lego. Runs on Debian/Ubuntu/CentOS/Alma/Rocky/Fedora, amd64 + arm64. Panel UI in 6 languages.&lt;/p&gt;

&lt;p&gt;The two engines run as separate processes behind one control plane, with a &lt;code&gt;NodeClient&lt;/code&gt; interface seam so that adding multi-node management later stays purely additive rather than a rewrite.&lt;/p&gt;

&lt;h2&gt;
  
  
  Install
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;git clone https://github.com/aipo-lenshow/EdgeNest.git
&lt;span class="nb"&gt;cd &lt;/span&gt;EdgeNest
&lt;span class="nb"&gt;sudo &lt;/span&gt;bash scripts/install.sh
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;There's also a prebuilt-tarball install for low-memory or offline boxes — no git, no compile.&lt;/p&gt;

&lt;h2&gt;
  
  
  Feedback welcome
&lt;/h2&gt;

&lt;p&gt;It's a fresh first release, so I'd really appreciate feedback — especially on the protocol wizard and the per-client subscription output. Issues and PRs are open.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;(Disclosure: I'm the developer. English isn't my first language, so I used an LLM to help word this post — the project and architecture are mine.)&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs6durqw2xgys8g7epb6x.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fs6durqw2xgys8g7epb6x.jpeg" alt=" " width="800" height="561"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8xdtna3305meisnxnnpo.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F8xdtna3305meisnxnnpo.jpeg" alt=" " width="800" height="392"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9c5v7ycqyhtb3z7zctpz.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F9c5v7ycqyhtb3z7zctpz.jpeg" alt=" " width="799" height="401"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnkrq91mo4eiz10nvl63v.jpeg" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnkrq91mo4eiz10nvl63v.jpeg" alt=" " width="800" height="458"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>selfhosted</category>
      <category>go</category>
      <category>opensource</category>
      <category>networking</category>
    </item>
  </channel>
</rss>
