
Official OpenResty Aarch64/ARM64 pkg repo
March 11, 2021 2 mins read Posted by Lujia Zhai (updated Jan 2, 2022)
- Ubuntu 18.04/20.04
- Debian 9/10
- CentOS/RHEL 7/8,Fedora 32/33
Mar 10, 2021 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
Today I’d like to demonstrate how to install OpenResty on Ubuntu 20.04 via apt-get. We’ll use this fresh install of Ubuntu 20. Read more...
Feb 9, 2021 3 mins read Posted by Yichun Zhang (updated Jan 2, 2022)
Hi, I’m Matthew from OpenResty Inc. Today I’d like to share how we generate our tutorial videos via the OpenResty Showman tool chain. Read more...
Feb 8, 2021 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
In this video, I’ll demonstrate how to do streaming HTTP response body output in OpenResty. cd ~/ mkdir stream-resp/ cd stream-resp/ We create the sub-directory structure as always. Read more...
Dec 9, 2020 4 mins read Posted by Yichun Zhang (updated Jan 2, 2022)
This tutorial demonstrates how to pre-compile Lua modules into LuaJIT bytecode. This can help reduce the startup time of an OpenResty application. Read more...
Dec 7, 2020 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
This tutorial demonstrates both the right ways and wrong ways of benchmarking user Lua code in OpenResty. cd ~ mkdir time-lua cd time-lua/ First of all, make sure our CPU is always at its full speed. Read more...
Dec 2, 2020 3 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
This tutorial demonstrates how to use OpenResty’s restydoc command-line utility to quickly lookup OpenResty documentation for Nginx modules, Nginx configuration directives, Lua API functions, Lua C functions, Lua modules, and many more. Read more...
Dec 1, 2020 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
This tutorial will demonstrate how to share data across different HTTP requests served by an OpenResty application. cd ~/ mkdir data-share cd data-share/ mkdir conf logs lua tree We first prepare our test application’s directory tree. Read more...
Nov 30, 2020 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
This tutorial will demonstrate how to install OpenResty on CentOS 8 via dnf. We’ll use this fresh install of CentOS 8 in this tutorial. Read more...
Nov 29, 2020 4 mins read Posted by Yichun Zhang (updated Dec 20, 2021)
In this tutroial, we will demonstrate how to use the resty command-line utility shipped with OpenResty. cd ~ export PATH=/usr/local/openresty/bin:$PATH which resty It’s usually in this path. Read more...