Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/cubicdaiya/ngx_http_fizzbuzz_module
- Owner: cubicdaiya
- License: mit
- Created: 2012-10-29T23:30:57.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-19T02:22:37.000Z (over 10 years ago)
- Last Synced: 2024-10-27T11:11:22.845Z (3 months ago)
- Topics: nginx
- Language: C
- Size: 149 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
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
$
```