openrestry安装及hello world
Posted zmf96
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了openrestry安装及hello world相关的知识,希望对你有一定的参考价值。
1. openresty环境安装
1.1. 以fedora 29为例
yum install pcre-devel openssl-devel gcc curl
wget https://openresty.org/download/openresty-1.13.6.2.tar.gz
tar -xzvf openresty-1.13.6.2.tar.gz
cd openresty-1.13.6.2
./configure
make
sudo make install
sudo dnf install 'dnf-command(copr)'
sudo dnf copr enable openresty/openresty
1.2. ubuntu 18.04下安装openresty
# 安装相关依赖包
sudo apt install libpcre3-dev openssl libssl-dev ruby zlib1g zlib1g.dev
# 下载源码
wget https://openresty.org/download/openresty-1.13.6.2.tar.gz
# 解压、配置、编译、安装:
tar xzvf openresty-1.13.6.2.tar.gz
cd openresty-1.13.6.2/
./configure
make
sudo make install
1.3. OpenResty "hello world"
创建以下目录
mkdir ~/work
cd ~/work
mkdir logs/ conf/
创建一个conf/nginx.conf
文件
worker_processes 1;
error_log logs/error.log;
events
worker_connections 1024;
http
server
listen 8080;
location /
default_type text/html;
content_by_lua '
ngx.say("<p>hello, world ! </p>")
';
以上是关于openrestry安装及hello world的主要内容,如果未能解决你的问题,请参考以下文章
Gstreamer官方教程汇总1---Hello World