Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cubicdaiya/ngx_http_hello_world
Hello, World with nginx
https://github.com/cubicdaiya/ngx_http_hello_world
nginx
Last synced: 3 months ago
JSON representation
Hello, World with nginx
- Host: GitHub
- URL: https://github.com/cubicdaiya/ngx_http_hello_world
- Owner: cubicdaiya
- License: mit
- Created: 2013-01-07T17:16:11.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2016-04-23T02:57:50.000Z (over 8 years ago)
- Last Synced: 2023-04-20T16:35:32.535Z (over 1 year ago)
- Topics: nginx
- Language: C
- Size: 5.86 KB
- Stars: 19
- Watchers: 1
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
# nginx_http_hello_world
Hello, World with nginx
# Getting started
There is the configuration below.
```nginx
location ~ /hello_world$ {
hello_world;
}
```There is the response below.
```sh
$ curl -s "http://127.0.0.1:80/hello_world"
Hello, World!
$
```