1. 安装依赖:

    sudo apt-get update
    sudo apt-get install libpcre3-dev libssl-dev perl make build-essential curl
  2. 下载OpenResty源码:

    wget https://openresty.org/download/openresty-1.19.9.1.tar.gz
    tar -xzvf openresty-1.19.9.1.tar.gz
    cd openresty-1.19.9.1
  3. 配置编译选项:

    ./configure --prefix=/usr/local/openresty --with-http_ssl_module --with-http_stub_status_module
  4. 编译并安装:

    make
    sudo make install
  5. 设置环境变量:

    echo 'export PATH=/usr/local/openresty/nginx/sbin:$PATH' >> ~/.bashrc
    source ~/.bashrc
  6. 启动OpenResty:

    nginx
  7. 验证安装:
    访问 http://localhost,如果看到OpenResty的欢迎页面,说明安装成功。

案例:使用OpenResty搭建一个简单的HTTP服务器

  1. 创建配置文件 /usr/local/openresty/nginx/conf/nginx.conf

    worker_processes  1;
    events {
        worker_connections  1024;
    }
    http {
        server {
            listen 80;
            location / {
                default_type text/html;
                content_by_lua_block {
                    ngx.say("<h1>Hello, OpenResty!</h1>")
                }
            }
        }
    }
  2. 重启OpenResty:

    nginx -s reload
  3. 访问 http://localhost,页面显示 "Hello, OpenResty!"。

本篇文章内容来源于:OpenResty编译安装详细说明以及案例