~spuul/nginx/trunk

« back to all changes in this revision

Viewing changes to debian/modules/nginx-lua/src/ngx_http_lua_config.h

  • Committer: Package Import Robot
  • Author(s): Christos Trochalakis, Christos Trochalakis
  • Date: 2014-02-13 11:41:49 UTC
  • mfrom: (1.3.32)
  • mto: This revision was merged to the branch mainline in revision 72.
  • Revision ID: package-import@ubuntu.com-20140213114149-tkp78c45rzu3wr6y
Tags: 1.4.5-1
[ Christos Trochalakis ]
* New upstream release.
* debian/modules/nginx-lua:
  + Update nginx-lua to v0.9.4
* debian/nginx-naxsi-ui.preinst:
  + Fix exit status issue (Closes: #735152)
* debian/control:
  + Fix arch:all to arch:any dependencies
  + Make nginx depend on specific flavor version
* debian/nginx-*.postinst:
  + Make nginx start by default (Closes: #735551)
* debian/nginx-*.prerm:
  + No need to check for invoke-rc.d,
    correctly set the exit code on error
* debian/nginx-common.nginx.init:
  + Rewrite some parts of the initscript
  + Introduce rotate command
  + Introduce upgrade command

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/*
 
3
 * Copyright (C) Yichun Zhang (agentzh)
 
4
 */
 
5
 
 
6
 
 
7
#ifndef _NGX_HTTP_LUA_CONFIG_H_INCLUDED_
 
8
#define _NGX_HTTP_LUA_CONFIG_H_INCLUDED_
 
9
 
 
10
 
 
11
#include "ngx_http_lua_common.h"
 
12
 
 
13
 
 
14
void ngx_http_lua_inject_config_api(lua_State *L);
 
15
 
 
16
 
 
17
#endif /* _NGX_HTTP_LUA_CONFIG_H_INCLUDED_ */
 
18
 
 
19
/* vi:set ft=c ts=4 sw=4 et fdm=marker: */