首页 > 代码库 > CentOS配置OpenResty
CentOS配置OpenResty
1、打开网址:https://openresty.org/en/download.html,看最新的版本号,比如说现在的版本号是1.11.2.1
2、wget https://openresty.org/download/openresty-1.11.2.1.tar.gz
3、tar zxvf openresty-1.11.2.1.tar.gz -C ~/openresty/
4、cd ~/openresty/
5、cd openresty-1.11.2.1
6、./configure --prefix=/opt/openresty --with-luajit --without-http_redis2_module --with-http_iconv_module
7、gmake
8、gmake install
9、设置环境变量:vim /etc/profile 把/opt/openresty/nginx/sbin加入PATH变量中
10、使用source /etc/profile来使配置生效,可以使用echo $PATH来查看是否确保生效。
11、mkdir -p ~/openresty-test ~/openesty-test/conf ~/openresty-test/logs
12、~/openesty-test/conf
13、vim nginx.conf
worker_processes 1;error_log logs/error.log;events{ worker_connections 1024;}http{ server{ listen 6699; location / { default_type text/html; content_by_lua_block{ ngx.say("hello world !") } } }}
14、使用下面的命令来开启openresty:nginx -p ~/openresty-test
15、curl http://localhost:6699 -i
CentOS配置OpenResty
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。