<?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>Forem: Hendry</title>
    <description>The latest articles on Forem by Hendry (@ziur_).</description>
    <link>https://forem.com/ziur_</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.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3817644%2Ff05a8958-0639-467e-91f1-881e52caed56.jpg</url>
      <title>Forem: Hendry</title>
      <link>https://forem.com/ziur_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/ziur_"/>
    <language>en</language>
    <item>
      <title>The Info-Site: A Name for Something Small Businesses Actually Need</title>
      <dc:creator>Hendry</dc:creator>
      <pubDate>Thu, 12 Mar 2026 14:00:00 +0000</pubDate>
      <link>https://forem.com/ziur_/the-info-site-a-name-for-something-small-businesses-actually-need-3cgp</link>
      <guid>https://forem.com/ziur_/the-info-site-a-name-for-something-small-businesses-actually-need-3cgp</guid>
      <description>&lt;p&gt;I've been in IT for over 20 years. Infrastructure, networking, server administration, VoIP, containerized deployments, Cloudflare tunnels — that's my world. Building websites has never been part of my job description.&lt;/p&gt;

&lt;p&gt;But sometimes a client's actual problem doesn't fit neatly into a category. And the best IT work I've done in my career has always been about solving the real problem in front of me, not the one on the service sheet.&lt;/p&gt;

&lt;p&gt;This is about one of those moments — and the concept it led me to name.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Problem
&lt;/h2&gt;

&lt;p&gt;One of my clients runs a small call center operation. Professional, well-run, growing. He needed a web presence — somewhere potential partners and clients could go to understand what his business does and how to reach him.&lt;/p&gt;

&lt;p&gt;The options in front of him looked like this:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Hire a web developer&lt;/strong&gt; — $1,500–$3,000+ for a custom build, ongoing maintenance costs, dependency on someone else's availability&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Use a website builder&lt;/strong&gt; (Wix, Squarespace, etc.) — $15–$40/month subscription, platform lock-in, no control over hosting or data&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;WordPress&lt;/strong&gt; — technically "free," but add hosting, a theme, plugins, and the learning curve and it stops being simple fast&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;None of these fit. He didn't need e-commerce. He didn't need a blog. He didn't need a booking system or a marketing funnel. He needed something that answered three questions clearly:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Who are you? What do you do? How do I reach you?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;That's it. And there was no clean, named solution for exactly that.&lt;/p&gt;




&lt;h2&gt;
  
  
  What We Built — And What I'm Calling It
&lt;/h2&gt;

&lt;p&gt;Working with AI as a tool in my stack — the same way I'd use any other tool — we put together what I'm now calling an &lt;strong&gt;info-site&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;The technical reality is simple:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A single &lt;code&gt;index.html&lt;/code&gt; file&lt;/li&gt;
&lt;li&gt;One image asset (the logo)&lt;/li&gt;
&lt;li&gt;Hosted on the client's own server&lt;/li&gt;
&lt;li&gt;Made publicly accessible via a Cloudflare Tunnel (zero open inbound ports)&lt;/li&gt;
&lt;li&gt;Served by an Nginx virtual host on a dedicated port&lt;/li&gt;
&lt;li&gt;Pointed to a custom subdomain via Cloudflare DNS&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Total monthly cost: &lt;strong&gt;$0&lt;/strong&gt;. No subscriptions. No third-party platforms. No dependencies that can break or change pricing on you. Full client ownership of every byte.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Technical Setup (For Those Who Want It)
&lt;/h2&gt;

&lt;p&gt;Here's the exact stack, since this community appreciates specifics:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Server:&lt;/strong&gt; Debian-based Linux (OMV on bare metal), running as (user)&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Web server:&lt;/strong&gt; Nginx&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Tunnel:&lt;/strong&gt; Cloudflare Tunnel (&lt;code&gt;cloudflared&lt;/code&gt;) — named tunnel, not legacy&lt;br&gt;&lt;br&gt;
&lt;strong&gt;DNS:&lt;/strong&gt; Cloudflare — subdomain CNAME pointing to the tunnel&lt;br&gt;&lt;br&gt;
&lt;strong&gt;Deployment folder:&lt;/strong&gt; &lt;code&gt;/home/rna-info/&lt;/code&gt; containing &lt;code&gt;index.html&lt;/code&gt; and &lt;code&gt;RnA-blue.png&lt;/code&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Nginx virtual host config
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight nginx"&gt;&lt;code&gt;&lt;span class="k"&gt;server&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="kn"&gt;listen&lt;/span&gt; &lt;span class="mi"&gt;8085&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;server_name&lt;/span&gt; &lt;span class="s"&gt;info.rnaconnection.com&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;root&lt;/span&gt; &lt;span class="n"&gt;/home/rna-info&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;index&lt;/span&gt; &lt;span class="s"&gt;index.html&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;autoindex&lt;/span&gt; &lt;span class="no"&gt;off&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;server_tokens&lt;/span&gt; &lt;span class="no"&gt;off&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="kn"&gt;location&lt;/span&gt; &lt;span class="n"&gt;/&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
        &lt;span class="kn"&gt;try_files&lt;/span&gt; &lt;span class="nv"&gt;$uri&lt;/span&gt; &lt;span class="nv"&gt;$uri&lt;/span&gt;&lt;span class="n"&gt;/&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt;&lt;span class="mi"&gt;404&lt;/span&gt;&lt;span class="p"&gt;;&lt;/span&gt;
    &lt;span class="p"&gt;}&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Cloudflare tunnel ingress entry (added to &lt;code&gt;/etc/cloudflared/config.yml&lt;/code&gt;)
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight yaml"&gt;&lt;code&gt;&lt;span class="pi"&gt;-&lt;/span&gt; &lt;span class="na"&gt;hostname&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;info.rnaconnection.com&lt;/span&gt;
  &lt;span class="na"&gt;service&lt;/span&gt;&lt;span class="pi"&gt;:&lt;/span&gt; &lt;span class="s"&gt;http://localhost:8085&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  Commands to deploy
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;&lt;span class="c"&gt;# Create and enable the Nginx config&lt;/span&gt;
&lt;span class="nb"&gt;ln&lt;/span&gt; &lt;span class="nt"&gt;-s&lt;/span&gt; /etc/nginx/sites-available/rna-info /etc/nginx/sites-enabled/rna-info
nginx &lt;span class="nt"&gt;-t&lt;/span&gt; &lt;span class="o"&gt;&amp;amp;&amp;amp;&lt;/span&gt; systemctl restart nginx

&lt;span class="c"&gt;# Register DNS and restart tunnel&lt;/span&gt;
cloudflared tunnel route dns &amp;lt;tunnel-name&amp;gt; info.rnaconnection.com
systemctl restart cloudflared
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;That's the entire deployment. No Docker container for this. No reverse proxy manager. No certificate management (Cloudflare handles TLS termination at the edge). Clean, minimal, maintainable.&lt;/p&gt;

&lt;h3&gt;
  
  
  The result
&lt;/h3&gt;

&lt;p&gt;You can see the finished info-site live at &lt;strong&gt;&lt;a href="https://info.rnaconnection.com" rel="noopener noreferrer"&gt;info.rnaconnection.com&lt;/a&gt;&lt;/strong&gt; — RNA Connections, a bilingual call center and workforce solutions company based in Mexico. Single HTML file, self-hosted, custom subdomain, zero monthly cost. That's the whole thing.&lt;/p&gt;




&lt;h2&gt;
  
  
  What Makes an Info-Site Different
&lt;/h2&gt;

&lt;p&gt;This is where I think the naming matters.&lt;/p&gt;

&lt;p&gt;The web industry has terms for most things — landing pages, brochure sites, marketing sites, portfolios. But none of those quite captures what this is, because they all carry implicit assumptions about &lt;em&gt;purpose&lt;/em&gt;:&lt;/p&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Type&lt;/th&gt;
&lt;th&gt;Primary Goal&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Landing page&lt;/td&gt;
&lt;td&gt;Convert a specific action (sign up, buy, download)&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Brochure site&lt;/td&gt;
&lt;td&gt;Impress and present brand identity&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Marketing site&lt;/td&gt;
&lt;td&gt;Generate leads, drive traffic, promote aggressively&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Portfolio&lt;/td&gt;
&lt;td&gt;Showcase work samples&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;&lt;strong&gt;Info-site&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;Inform clearly and let the relationship develop naturally&lt;/strong&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;An info-site isn't trying to close you. It's not running A/B tests on button colors. It's not asking for your email address. It exists to give someone who already has a reason to be interested everything they need to understand the business and make contact.&lt;/p&gt;

&lt;p&gt;It's a professional reference point. Nothing more, nothing less.&lt;/p&gt;

&lt;h3&gt;
  
  
  The defining characteristics
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Informational first&lt;/strong&gt; — content organized around understanding, not conversion&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Self-hosted and fully owned&lt;/strong&gt; — no platform dependency, no subscription risk&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Single file or near-single file&lt;/strong&gt; — lightweight, fast, easy to maintain&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Static&lt;/strong&gt; — no database, no backend, no attack surface beyond the file itself&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Subdomain-based&lt;/strong&gt; — often lives at &lt;code&gt;info.yourdomain.com&lt;/code&gt;, separate from any main site&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Why This Matters for Small Businesses (Especially in Mexico)
&lt;/h2&gt;

&lt;p&gt;Most of my clients are small and mid-size businesses in Hermosillo, Sonora. The gap between "no web presence" and "full website" is enormous in terms of cost and complexity — and most businesses fall into it without a good option.&lt;/p&gt;

&lt;p&gt;The info-site fills that gap cleanly:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A developer or sysadmin can build one in a few hours&lt;/li&gt;
&lt;li&gt;It can be maintained by anyone who can edit an HTML file&lt;/li&gt;
&lt;li&gt;Hosting cost is zero if you already run any kind of server&lt;/li&gt;
&lt;li&gt;It looks professional because it &lt;em&gt;is&lt;/em&gt; professional — just focused&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For businesses that self-host (Nextcloud, OMV, Proxmox setups are common among my clients), this fits naturally into infrastructure that already exists. One more Nginx vhost. One more Cloudflare tunnel entry. Done.&lt;/p&gt;




&lt;h2&gt;
  
  
  The Concept, Named
&lt;/h2&gt;

&lt;p&gt;I'm putting a name to this because naming things matters in our field. A named concept can be referenced, discussed, improved, and built upon. "Info-site" is short, descriptive, and immediately understandable — which is more than most jargon manages.&lt;/p&gt;

&lt;p&gt;If you've built something like this for a client and called it something else, or struggled to explain what it was — now you have a word for it.&lt;/p&gt;

&lt;p&gt;And if you're an IT professional who occasionally finds yourself solving problems that aren't strictly in your lane: that's not a bug in your career. That's what being useful actually looks like.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;Hendry Ruiz is an independent IT professional and MSP based in Hermosillo, Sonora, Mexico, with 20+ years of experience in infrastructure, networking, VoIP, and systems administration. He operates &lt;a href="https://info.opcontrol.net" rel="noopener noreferrer"&gt;OpControl I.T. Solutions&lt;/a&gt;, providing managed IT services for small and mid-size businesses.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>selfhosted</category>
      <category>opensource</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
