Created
November 15, 2020 01:50
-
-
Save agentzh/8565f5c42bba1af88c88cde1fba5ae37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[V=browser-hello.mp4] Hi, I'm Matthew from OpenResty Inc. In this video, I'll demonstrate how to implement a "hello world" HTTP interface using OpenResty. | |
First of all, we make sure we are using OpenResty's nginx. | |
[delay=0] $ export PATH=/usr/local/openresty/nginx/sbin:$PATH | |
$ which nginx | |
[S] It's usually in this path. | |
And then we go to the home directory. | |
$ cd ~/ | |
Create and switch to a directory named 'hello' for our example. | |
$ mkdir hello | |
$ cd hello | |
Create the boilerplate sub-directories for the OpenResty application. | |
$ mkdir logs conf | |
$ ls | |
Then let's create a simple nginx.conf file under the 'conf' sub-directory. Here we use vim. | |
vim conf/nginx.conf | |
Let's enable a single nginx worker process for simplicity. | |
i [NONL] | |
worker_processes 1; | |
[NOP] | |
We enable at most 1024 per-worker connections. | |
events { | |
worker_connections 1024; | |
} | |
[NOP] | |
And here we configure an HTTP server. | |
http { | |
server { | |
Listen to the 8080 port with 'reuseport' enabled. | |
listen 8080 reuseport; | |
[NOP] | |
Finally we add a root location to this server. | |
location / { | |
We set the default MIME type to text/plain. | |
default_type text/plain; | |
We embed some Lua code to emit a response with the body 'Hello World'. | |
content_by_lua_block { ngx.say("Hello World") } | |
} | |
} | |
} | |
The file is now complete. Let's save it. | |
[ESC] | |
:w | |
Quit the vim editor. | |
:q | |
$ | |
Now let's test if the configuration is correct with the '-t' option. | |
$ nginx -p $PWD/ -t | |
[S] Looking good! | |
Now let's start this OpenResty application for real. | |
$ nginx -p $PWD/ | |
And check if the nginx processes are running. | |
$ ps aux|grep nginx|grep -v /tmp/ | |
[S] Nice. They are up. One master and one worker. | |
We can now send a test HTTP request to this server with the 'curl' command-line utility. | |
$ curl 'http://127.0.0.1:8080/' | |
[S] We're indeed getting the response body 'Hello World'. | |
[V=browser-hello.mp4] We can also try accessing the / URI in a web browser. | |
[S] As we can see, it also displays "Hello World" as expected. | |
[S] If you like this video, please subscribe to our channel. Thank you! |
@anjia0532 OpenResty Demo is a commercial product by OpenResty Inc. If you are interested, please contact [email protected]. Thanks.
@agentzh ok ,thanks : )
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
how to gen the videos by this script? (Where can I find it and download OpenResty Demo tool chain ?)