<?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: mike</title>
    <description>The latest articles on DEV Community by mike (@nogeography).</description>
    <link>https://dev.to/nogeography</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%2F546363%2Fa41f98b4-151a-4753-8af7-93576b384cba.jpg</url>
      <title>DEV Community: mike</title>
      <link>https://dev.to/nogeography</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nogeography"/>
    <language>en</language>
    <item>
      <title>Building a web app delivery tool. Need feedback</title>
      <dc:creator>mike</dc:creator>
      <pubDate>Tue, 12 Jan 2021 14:06:21 +0000</pubDate>
      <link>https://dev.to/nogeography/building-a-web-app-delivery-tool-need-feedback-2554</link>
      <guid>https://dev.to/nogeography/building-a-web-app-delivery-tool-need-feedback-2554</guid>
      <description>&lt;p&gt;Hi everybody!&lt;/p&gt;

&lt;p&gt;We're working on &lt;a href="https://www.exogress.com"&gt;Exogress&lt;/a&gt; - a service that helps developers expose their web apps to the Internet with less complexity and operational costs. Let me share a little about it.&lt;/p&gt;

&lt;p&gt;As a developer, you build a web app and want to make it available to people in your team or all around the globe. At the very least, it means dealing with the public/private IPs and load balancing. It may also require CDN, DDoS protection, IAP, and so on. All of this needs configuration effort, and the application delivery often ends up with a multi-layered setup as it grows.&lt;/p&gt;

&lt;p&gt;Exogress simplifies things dramatically. Exposing your web apps is as easy as running a single command-line application with a simple yet powerful YAML config file.&lt;/p&gt;

&lt;p&gt;You'll need to spawn Exogress client with your running backend (as a CLI app or, later, as a dependency for your framework), which will establish an on-demand secure direct tunnel with the edge gateways served by Exogress. It allows you to move load balancing functions out of your infrastructure, and, as a developer, you only need to run your code somewhere, and it simply works!&lt;/p&gt;

&lt;p&gt;Exogress runs on your development machine, raspberry pi, or cloud server in the same way. Edge gateways act as IAP, Load Balancer, WAF, DDoS protection, covering most of the application delivery needs.&lt;/p&gt;

&lt;p&gt;We're also addressing the complicated configuration, like multi-upstreams based on complex rules. Exogress natively supports micro-services: our config file (Exofile) is a YAML configuration that lives in your services' repositories. It makes config simple and very powerful at the same time.&lt;/p&gt;

&lt;p&gt;Here is an example of a simple Exofile:&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;---
version: 1.0.0
revision: 1
name: config
mount-points:
  app:
    static:
      kind: static-dir
      priority: 5
      dir: ./public
            rescue:
        - catch status-code:404
          action: next-handler
    handlers:
      rails:
        kind: proxy
        upstream: rails
        priority: 10

upstreams:
  rails:
    port: 3000
    health-checks:
      alive:
        kind: liveness
        path: /health
        timeout: 5000ms
        period: 5s
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Our goal is to build a single platform that covers all web application delivery needs. Exogress is a developer- and DevOps friendly next-generation web delivery platform. Here's the list of features we currently have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Automatic TLS certificates through Let's Encrypt;&lt;/li&gt;
&lt;li&gt;Subdomain in provided &lt;a href="http://exg.link"&gt;exg.link&lt;/a&gt; zone or your own domains;&lt;/li&gt;
&lt;li&gt;Load Balancer with health checks;&lt;/li&gt;
&lt;li&gt;CDN with caching on the edge;&lt;/li&gt;
&lt;li&gt;Identity-aware proxy. Protect your web apps with external authentication. Currently, we support authentication through Google and GitHub oAuth2;&lt;/li&gt;
&lt;li&gt;Blob storages - currently S3 (and compatible) and GCS;&lt;/li&gt;
&lt;li&gt;Microservices friendly. Easily expose different microservices under the same domain based on your rules;&lt;/li&gt;
&lt;li&gt;..and much more in the future&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Exogress was created by and for developers and is open-source. You may find the source code in our GitHub account: &lt;a href="https://github.com/exogress/"&gt;https://github.com/exogress/&lt;/a&gt;. We rely mostly on rust programming language - one of the fastest and safest languages.&lt;/p&gt;

&lt;p&gt;We are at the very beginning and looking for developers in the community who are keen to try it out and share feedback. &lt;a href="https://calendly.com/exogress-team/exogress-interview?month=2021-01"&gt;Please let us know&lt;/a&gt; if you would like to hop on a short call and/or receive an invite. &lt;/p&gt;

&lt;p&gt;Developers who have microservices, multicloud, or multiple delivery services involved - you might like Exogress the most, so please reach out!&lt;/p&gt;

</description>
      <category>devops</category>
      <category>webdev</category>
      <category>configuration</category>
    </item>
  </channel>
</rss>
