本文共 2031 字,大约阅读时间需要 6 分钟。
Nginx ? OpenResty ?????? Web ???????????????????????????? Web ?????????????????????????
Nginx ? Igor Sysoev ? 2004 ??????? HTTP ? IMAP/POP3 ???????????????????????????????????????????????????????????? Apache ???????? Web ??????
OpenResty ??? Nginx ??????????????? Lua ??????????????????? Web ??? API ???????? Nginx ????? Lua ?????????????????????
sudo apt updatesudo apt install nginx
sudo systemctl start nginxsudo systemctl enable nginx
/etc/nginx/nginx.conf?????????server { listen 80; server_name example.com; location / { root /var/www/html; index index.html index.htm; }} sudo nginx -tsudo systemctl restart nginx
sudo apt updatesudo apt install -y software-properties-commonsudo add-apt-repository -y ppa:openresty/ppasudo apt update
sudo apt install -y openresty
sudo systemctl start openrestysudo systemctl enable openresty
/usr/local/openresty/nginx/conf/nginx.conf?????????http { server { listen 80; server_name example.com; location / { content_by_lua_block { ngx.say("Hello, OpenResty!"); } } }} sudo /usr/local/openresty/nginx/sbin/nginx -tsudo systemctl restart openresty
Nginx ? OpenResty ?????????????Nginx ?????????????????? OpenResty ????????? Lua ???????????? Web ??? API ?????????????????????????????????
转载地址:http://jcpfk.baihongyu.com/