Deploy a hello world openresty app
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
server {
|
||||
listen 80 reuseport;
|
||||
location / {
|
||||
default_type text/plain;
|
||||
content_by_lua_block {
|
||||
ngx.say("Hello World")
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user