[nginx]编译安装openresty
2022/9/5 5:23:00
本文主要是介绍[nginx]编译安装openresty,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
前言
OpenResty是一个基于Nginx和Lua的高性能Web平台,其内部集成了大量精良的Lua库、第三方模块以及大多数的依赖项。用于方便地搭建能够处理超高并发、扩展性极高的动态 Web 应用、Web 服务和动态网关。
版本信息
系统和应用 | 版本 |
---|---|
Debian | 11-amd64位 |
OpenResty | 1.21.4.1 |
步骤
- 下载源码包并解压
wget https://openresty.org/download/openresty-1.21.4.1.tar.gz tar xf openresty-1.21.4.1.tar.gz
- 编译
# apt安装依赖 apt install -y libpcre3-dev openssl libssl-dev libxml2-dev libgd-dev libxml2 libgeoip-dev libxslt-dev cd openresty-1.21.4.1 # 以下预编译参数和Nginx的编译参数基本一致 ./configure --prefix=/home/apps/openresty \ --with-threads \ --with-file-aio \ --with-http_ssl_module \ --with-http_v2_module \ --with-http_realip_module \ --with-http_addition_module \ --with-http_xslt_module=dynamic \ --with-http_image_filter_module=dynamic \ --with-http_geoip_module=dynamic \ --with-http_sub_module \ --with-http_dav_module \ --with-http_flv_module \ --with-http_mp4_module \ --with-http_gunzip_module \ --with-http_gzip_static_module \ --with-http_auth_request_module \ --with-http_random_index_module \ --with-http_secure_link_module \ --with-http_degradation_module \ --with-http_slice_module \ --with-http_stub_status_module \ --with-stream_ssl_module \ --with-stream_realip_module \ --with-stream_geoip_module=dynamic \ --with-stream_ssl_preread_module \ --with-compat \ --with-pcre-jit gmake gmake install
- 启动OpenResty
/home/aps/openresty/bin/openresty
- 浏览器访问80端口测试
- (可选)验证无误后,将openresty的bin目录添加到系统环境变量PATH中
helloworld
- 编辑
/home/apps/openresty/nginx/conf/nginx.conf
, 找到监听80端口的server,增加以下路由
location = /test { default_type 'text/plain'; content_by_lua_block { ngx.say('Hello World') } }
- 热加载生效
openresty -s reload
- 测试
curl http://127.0.0.1/test
ngx.say
将数据作为响应体输出,返回给客户端,并在末尾加上一个回车符。
content_by_lua_block
的主要作用是在HTTP的内容处理阶段生成数据
参考
- OpenResty 官方中文站
这篇关于[nginx]编译安装openresty的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2024-10-29Nginx发布学习:从入门到实践的简单教程
- 2024-10-28Nginx发布:新手入门教程
- 2024-10-21nginx 怎么设置文件上传最大20M限制-icode9专业技术文章分享
- 2024-10-17关闭 nginx的命令是什么?-icode9专业技术文章分享
- 2024-09-17Nginx实用篇:实现负载均衡、限流与动静分离
- 2024-08-21宝塔nginx新增8022端口方法步骤-icode9专业技术文章分享
- 2024-08-21nginx配置,让ws升级为wss访问的方法步骤-icode9专业技术文章分享
- 2024-08-15nginx ws代理配置方法步骤-icode9专业技术文章分享
- 2024-08-14nginx 让访问带有/relid的地址返回404 ,例子 /relid-x-0.36-y-131.html-icode9专业技术文章分享
- 2024-08-14nginx 判断地址有/statics/的路径,指向到/home/html/statics/目录-icode9专业技术文章分享