StephanDollberg / yotta

HTTP File Server Serving Yottabytes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Yotta

Yotta is basic http file server. It serves my personal blog dollberg.xyz.

It's main purpose is though to build an epoll based event loop with all kinds of gimmicks. In addition, it's a performant file server that doesn't need 50 lines of config.

Current HTTP Features:

  • If-Modified-Since
  • (Essential) Range Support

Event loop:

  • Edge triggered epoll loop
  • Connections loadbalanced via REUSEPORT to worker processes
  • Timers via timerfd
  • Files are served directly via sendfile
  • Zero down time upgrades (same principle as nginx)

Building

CMake is being use as a build system.

mkdir build
cd build 
cmake ../src
make

Will build you the yotta binary.

Usage

Run the binary in the directory you want to serve, you shall pass the address and port to listen on:

yotta -h :: -p 10000

To listen on all interfaces and port 10000.

See upgrade_yotta.sh and yotta.unit for usage of the pid file (-i) option, daemonizing (-g) option and how to upgrade.

Tests

There are a couple of unit tests which can be run via make test in the build folder in addition to integration tests in src/test.

About

HTTP File Server Serving Yottabytes

License:MIT License


Languages

Language:C 61.2%Language:C++ 30.3%Language:Python 5.5%Language:CMake 1.9%Language:Shell 0.6%Language:Dockerfile 0.3%Language:HTML 0.0%Language:CSS 0.0%