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_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

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!
$
```