Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/cubicdaiya/ngx_http_fizzbuzz_module

FizzBuzz with Nginx
https://github.com/cubicdaiya/ngx_http_fizzbuzz_module

nginx

Last synced: about 1 month ago
JSON representation

FizzBuzz with Nginx

Awesome Lists containing this project

README

        

# nginx_http_fizzbuzz_module

FizzBuzz with nginx

```
location ~ /fizzbuzz$ {
fizzbuzz $arg_number;
}
```

```
$ curl -l "http://127.0.0.1:80/fizzbuzz?number=72"

FizzBuzz with nginx!

FizzBuzz(72) = Fizz

$
```