# vim: set noexpandtab:
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=reverse-proxy
|
|
PKG_VERSION:=1.0
|
|
PKG_RELEASE:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/reverse-proxy
|
|
SECTION:=meta
|
|
CATEGORY:=LILiK
|
|
DEPENDS:=+nginx-all-module
|
|
TITLE:=reverse proxy meta package
|
|
endef
|
|
|
|
define Package/reverse-proxy/description
|
|
LILiK's reverse proxy meta-package
|
|
|
|
endef
|
|
|
|
define Build/Compile
|
|
endef
|
|
|
|
define Package/reverse-proxy/install
|
|
$(INSTALL_DIR) $(1)/etc/nginx/http.conf.d
|
|
$(INSTALL_DIR) $(1)/etc/nginx/map.conf.d
|
|
$(INSTALL_DIR) $(1)/etc/nginx/upstream.conf.d
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,reverse-proxy))
|