idea+OpenResty

1、安裝OpenResty

 

 

 

2、IDEA插件

   Lua,nginx Support,OpenResty Lua Support

  ant 發佈運行

  

 

 

 

 

 

3、創建lua項目

 

 

 

  3.1)

 

創建conf\nginx.conf 內容如下:

   worker_processes 1;
error_log logs/error.log info;
events {
worker_connections 1024;
}
http {
default_type application/octet-stream;
access_log logs/access.log;
lua_package_path 'luademo1/?.lua;;';
server {
listen 8080;
server_name localhost;
default_type text/html;
location = /favicon.ico {
log_not_found off;
access_log off;
}

location /test {
content_by_lua_file luademo1/helloworld.lua;
}
}
}

 

 


     src\helloworld.lua文件

---
--- Generated by EmmyLua(https://github.com/EmmyLua)
--- Created by admin.
--- DateTime: 2024/1/8 14:22
---

local hello = function ()
ngx.say("Hello world,Lua!")
end

hello()

 

 


     build.xml

<?xml version="1.0" encoding="UTF-8"?>

<project name="luademo1" default="dist" basedir=".">
<description>
run pic-server
</description>
<!-- set global properties for D:\tools\openresty-1.19.3.1-win64 this build -->
<property name="openresty-home" location="D:\tools\openresty-1.19.3.1-win64"/>
<property name="conf" location="${basedir}/conf"/>
<property name="src" location="${basedir}/src"/>
<property name="target-conf" location="${openresty-home}/conf"/>
<property name="target-src" location="${openresty-home}/${ant.project.name}"/>

<echo>######開發版本的ant配置#####</echo>
<target name="clean" depends="">
<echo>清理openresty目錄${dist}下的conf,logs,janus,januslib</echo>
<delete dir="${target-conf}"/>
<delete dir="${target-src}"/>
<delete>
<fileset dir="${openresty-home}/logs" includes="*.log">
</fileset>
</delete>
</target>

<target name="init" depends="clean">
<echo>創建安裝目錄</echo>
<mkdir dir="${target-conf}"/>
<mkdir dir="${target-src}"/>
</target>

<target name="dist" depends="init" description="generate the distribution" >
<echo>複製安裝文件</echo>
<copy todir="${target-conf}">
<fileset dir="${conf}"></fileset>
</copy>
<copy todir="${target-src}">
<fileset dir="${src}"></fileset>
</copy>
</target>

</project>

 3.2) nginx.conf編輯類型

 

 

 

4、IDEA中配置openresty及ant


 

 

 

 

配置Ant Build,用於將confsrc中的文件拷貝到OpenResty安裝目錄下的指定路徑D:\tools\openresty-1.19.3.1-win64

右鍵build.xml文件,選中Add as Ant Build File

    • 點擊Ant中的Run執行一下

 

 

 

 

 

 

 

 

 

 

 

運行Ant,在OpenResty安裝目錄下看到文件已經拷貝

 

 

5、IDEA中啓動openresty

   先啓動ant

 

 

 

 

啓動openresty

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章