hexinfra / gorox

Gorox is a pragmatic Webapp Server, RPC Framework, and Network Proxy.

Home Page:https://gorox.io/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome

Welcome to Gorox!

Gorox is a pragmatic Webapp Server, RPC Framework, and Network Proxy. It can be used as:

  • Web Server (HTTP, TLS, WebSocket, static, FCGI, uwsgi, AJP)
  • Go Application Server (Frameworks, Applications)
  • RPC Framework for Go (HRPC, gRPC)
  • Web Reverse Proxy (HTTP, TLS, WebSocket, Caching, Load Balancing)
  • Layer 7 Reverse Proxy (Various Protocols, with or without Load Balancing)
  • Layer 4 Reverse Proxy (TCP, UDP, QUIC, UDS, Load Balancing)
  • SOCKS Proxy, HTTP Tunnel Proxy (TCP, UDP, IP)
  • ... and more through its highly extensible compoments design!

For more details about Gorox, see: https://gorox.io/.

Why?

To be written.

Platforms

Gorox works on these operating systems:

  • Linux kernel >= 3.9
  • Microsoft Windows >= 10
  • Apple macOS >= Catalina
  • FreeBSD >= 12.0

And these 64-bit CPU architectures:

  • AMD64, also known as x64, x86-64, Intel 64
  • ARM64, also known as AArch64
  • RISCV64, also known as RV64, RISC-V 64
  • Loong64, also known as LA64, LoongArch 64

Other platforms are currently not tested and probably don't work.

Quickstart

Using Gorox as a Network Proxy

If you would like to use Gorox as a Network Proxy, you can download the official binary distribution and read the "Start and stop Gorox" section below. But if you choose to build it from source, please read below.

Using Gorox as a Webapp Server or RPC Framework

When using Gorox as a Webapp Server or RPC Framework, you have to build it from source. Before building, please ensure you have Go >= 1.20 installed:

shell> go version

Then download the source code tarball, uncompress it, and build it with Go:

shell> cd gorox-x.y.z
shell> go build

If build failed, set CGO_ENABLED to 0 and try again:

shell> go env -w CGO_ENABLED=0
shell> go build

On succeed, a "gorox" or "gorox.exe" binary will be generated.

Now, you can try to change some webapps under "apps/examples/", and build again. To follow the Gorox convention, put your new webapps under "apps/" and your new services under "svcs/".

Start and stop Gorox

After you have downloaded and uncompressed the official binary distribution, or have successfully built the binary from source, you can run Gorox as a daemon (or remove the "-daemon" option if you don't like to run as a daemon):

shell> ./gorox serve -daemon

Then ensure the leader and the worker process have both been started:

shell> ./gorox pids

Now visit http://localhost:3080 to see if it works. To exit server gracefully:

shell> ./gorox quit

For more actions and options, run:

shell> ./gorox help

To install Gorox, simply move the whole Gorox directory to where you like. To uninstall, simply remove the whole Gorox directory.

More usage examples

We provide some example configs for Gorox to use, see them under conf/examples. For example, if you are using Gorox as an HTTP reverse proxy, there is a demo config in conf/examples/http_proxy.conf, you can modify it and start Gorox like:

shell> ./gorox -daemon -config conf/examples/http_proxy.conf

Performance

Gorox is fast. You can use your favorite HTTP benchmarking tool (like wrk) to perform a benchmark against the following URLs:

Generally, the result is about 80% of nginx and slightly faster than fasthttp.

Documentation

View Gorox documentation online:

Or view locally (ensure your local Gorox is started):

Layout

By default, Gorox uses these directories:

  • apps/ - Place your Web applications,
  • bins/ - Place your auxiliary commands,
  • conf/ - Place configs for Gorox and your commands,
  • docs/ - Place docs of your project,
  • exts/ - Place extended components written for your project,
  • hemi/ - The Hemi Engine,
  • idls/ - Place your Interface Description Language files,
  • libs/ - Place libs written by you for your project,
  • misc/ - Place misc resource of your project,
  • svcs/ - Place your RPC services,
  • test/ - Place tests for your project.

After Gorox is started, an extra directory called "data/" will be created, with 3 sub directories in it:

  • data/logs/ - Place running logs,
  • data/tmps/ - Place files which are safe to remove after Gorox is shutdown,
  • data/vars/ - Place dynamic data files used by Gorox.

Architecture

Deployment

A typical deployment architecture using Gorox might looks like this:

            mobile  pc iot
               |    |   |
               |    |   |           public internet
               |    |   |
               v    v   v
             +------------+
+------------| edgeProxy1 |--------------+ gorox cluster
|            +--+---+--+--+              |
|    web        |   |  |        tcp      |
|      +--------+   |  +--------+        |
|      |            |           |        |
|      v           rpc          v        |
|   +------+        |      +---------+   |
|   | app1 +----+   |   +--+ server1 |   |
|   +------+    |   |   |  +----+----+   |
|               |   |   |       |        | stateless layer
|               v   v   v       v        |
|  +------+   +-----------+  +--------+  |   +------------------+
|  | svc1 |<->| svcProxy1 |  | proxy2 |--+-->| php-fpm / tomcat |
|  +------+   +-----+-----+  +--------+  |   +------------------+
|                   |                    |
|                   v                    |
|  +------+   +-----------+  +--------+  |
|  | svc2 |<--+ svcProxy2 |  |cronjob1|  |
|  +------+   +-----------+  +--------+  |
|                                        |
+-----------+------+---------+-----------+
            |      |         |
            v      v         v
+----------------------------------------+
|     +-------+  +-----+  +--------+     |
| ... |  db1  |  | mq1 |  | cache1 | ... | stateful layer
|     +-------+  +-----+  +--------+     |
+----------------------------------------+

In this typical architecture, with various configurations, Gorox can play ALL of the roles in "gorox cluster":

  • edgeProxy1: The Edge Proxy, also works as an API Gateway or WAF,
  • app1 : A Web application implemented directly on Gorox,
  • server1 : A TCP server implemented directly on Gorox,
  • svc1 : A public RPC service implemented directly on Gorox,
  • svcProxy1 : A service proxy for svc1,
  • proxy2 : A gateway proxy passing requests to PHP-FPM or Tomcat server,
  • svc2 : A private RPC service implemented directly on Gorox,
  • svcProxy2 : A service proxy for svc2,
  • cronjob1 : A background application in Gorox doing something periodically.

The whole Gorox cluster can alternatively be managed by a Myrox instance, which behaves like the control plane in Service Mesh. In this configuration, all Gorox instances in the cluster connect to Myrox and are under its control.

Process

A Gorox instance has two processes: a leader process, and a worker process:

                  +----------------+         +----------------+ business traffic
         cmdConn  |                | admConn |                |<===============>
operator--------->| leader process |<------->| worker process |<===============>
                  |                |         |                |<===============>
                  +----------------+         +----------------+

Leader process manages the worker process, which do the real and heavy work.

A Gorox instance can be controlled by operators through the cmdui interface of leader process. Operators connect to leader, send commands, and leader executes the commands. Some commands are delivered to worker through admConn.

Alternatively, Gorox instances can connect to a Myrox instance and delegate their administration to Myrox. In this way, the cmdui interface in the leader process is disabled.

Community

Currently Github Discussions is used for discussing:

https://github.com/hexinfra/gorox/discussions

Contact

Gorox is originally written by Zhang Jingcheng diogin@gmail.com. You can also contact him through Twitter: @diogin.

The official website of the Gorox project is at:

License

Gorox is licensed under a 2-clause BSD License. See LICENSE.md file.

Contributing

Gorox is hosted at Github:

https://github.com/hexinfra/gorox

Fork this repository and contribute your patch through Github Pull Requests.

By contributing to Gorox, you MUST agree to release your code under the BSD License that you can find in the LICENSE.md file.

Security

Please report any security issue or crash report to:

Zhang Jingcheng diogin@gmail.com

Your issue will be triaged and coped with appropriately.

Thank you in advance for helping to keep Gorox secure!

About

Gorox is a pragmatic Webapp Server, RPC Framework, and Network Proxy.

https://gorox.io/

License:Other


Languages

Language:Go 92.2%Language:HTML 7.7%Language:CSS 0.1%Language:Shell 0.0%Language:PHP 0.0%