OpenResty编译安装详细说明以及案例
2025-03-06
4
安装依赖:
sudo apt-get update sudo apt-get install libpcre3-dev libssl-dev perl make build-essential curl
下载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
配置编译选项:
./configure --prefix=/usr/local/openresty --with-http_ssl_module --with-http_stub_status_module
编译并安装:
make sudo make install
设置环境变量:
echo 'export PATH=/usr/local/openresty/nginx/sbin:$PATH' >> ~/.bashrc source ~/.bashrc
启动OpenResty:
nginx
验证安装:
访问http://localhost
,如果看到OpenResty的欢迎页面,说明安装成功。
案例:使用OpenResty搭建一个简单的HTTP服务器
创建配置文件
/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>") } } } }
重启OpenResty:
nginx -s reload
访问
http://localhost
,页面显示 "Hello, OpenResty!"。
本篇文章内容来源于:OpenResty编译安装详细说明以及案例
声明:本站所有文章资源内容,如无特殊说明或标注,均为采集网络资源。如若本站内容侵犯了原著者的合法权益,可联系本站删除。