https://github.com/cubicdaiya/ngx_http_fizzbuzz_module
FizzBuzz with Nginx
https://github.com/cubicdaiya/ngx_http_fizzbuzz_module
nginx
Last synced: 3 months 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 (over 12 years ago)
- Default Branch: master
- Last Pushed: 2014-08-19T02:22:37.000Z (almost 11 years ago)
- Last Synced: 2025-02-07T16:44:19.330Z (5 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
$
```