ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

115你懂分享你懂得

2020-03-07 18:55:30  阅读:258  来源: 互联网

标签:xml log nginx server 115 lua 懂得 conf 分享


115你懂分享你懂得

115资源库永久客服【芯:7960つ1048】█
永久客服【芯:7960つ1049】█

一、前期准备
安装OpenResty。官网有详细的下载、安装文档

安装IDEA。同时以下安装插件
Lua
nginx Support
OpenResty Lua Support

二、创建并配置项目
创建一个名为luademo1的Lua项目

 


创建conf、src目录,并添加nginx.conf、build.xml和helloworld.lua文件


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;
}
}
}
helloworld.lua文件

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 this build -->
<property name="openresty-home" location="D:\openresty-1.15.8.2-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>
其中build.xml文件中的D:\openresty-1.15.8.2-win64一定要换成OpenResty的真实安装目录

配置nginx server,用于在IDEA中启动nginx

 

 

 

配置Ant Build,用于将conf和src中的文件拷贝到OpenResty安装目录下的指定路径
右键build.xml文件,选中Add as Ant Build File

标签:xml,log,nginx,server,115,lua,懂得,conf,分享
来源: https://www.cnblogs.com/tingyan999/p/12436178.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有