update 2024-06-21 20:31:33
This commit is contained in:
parent
43c46d208c
commit
dcb0cf3fc1
|
@ -2,7 +2,7 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=luci-app-ssr-plus
|
PKG_NAME:=luci-app-ssr-plus
|
||||||
PKG_VERSION:=188
|
PKG_VERSION:=188
|
||||||
PKG_RELEASE:=5
|
PKG_RELEASE:=6
|
||||||
|
|
||||||
PKG_CONFIG_DEPENDS:= \
|
PKG_CONFIG_DEPENDS:= \
|
||||||
CONFIG_PACKAGE_$(PKG_NAME)_INCLUDE_NONE_V2RAY \
|
CONFIG_PACKAGE_$(PKG_NAME)_INCLUDE_NONE_V2RAY \
|
||||||
|
|
|
@ -0,0 +1 @@
|
||||||
|
zh_Hans
|
|
@ -1 +0,0 @@
|
||||||
zh-cn
|
|
|
@ -8,13 +8,13 @@ include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
LUCI_TITLE:=Nginxer
|
LUCI_TITLE:=Nginxer
|
||||||
LUCI_DESCRIPTION:=Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme
|
LUCI_DESCRIPTION:=Standard OpenWrt set including full admin with ppp support and the default Bootstrap theme
|
||||||
PKG_VERSION:=0.0.1
|
PKG_VERSION:=0.0.2
|
||||||
PKG_RELEASE:=1
|
PKG_RELEASE:=1
|
||||||
LUCI_DEPENDS:=+luci-nginx
|
LUCI_DEPENDS:=+luci-nginx
|
||||||
|
|
||||||
define Package/luci-nginxer/postrm
|
define Package/luci-nginxer/postrm
|
||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
/etc/init.d/uhttpd enabled
|
/etc/init.d/uhttpd enable
|
||||||
/etc/init.d/uhttpd start
|
/etc/init.d/uhttpd start
|
||||||
exit 0
|
exit 0
|
||||||
endef
|
endef
|
||||||
|
|
|
@ -8,6 +8,10 @@ if [ "$nginxer" != 1 ]; then
|
||||||
uci set nginx._redirect2ssl.access_log='off; # logd openwrt'
|
uci set nginx._redirect2ssl.access_log='off; # logd openwrt'
|
||||||
uci set nginx.global.nginxer='1'
|
uci set nginx.global.nginxer='1'
|
||||||
uci commit nginx
|
uci commit nginx
|
||||||
|
|
||||||
|
# fix firmware upload failed
|
||||||
|
sed -i 's/client_max_body_size 128M;/client_max_body_size 256M;/g' /etc/nginx/uci.conf.template
|
||||||
|
|
||||||
# /etc/init.d/uhttpd running || /etc/init.d/uhttpd disable
|
# /etc/init.d/uhttpd running || /etc/init.d/uhttpd disable
|
||||||
/etc/init.d/nginx reload
|
/etc/init.d/nginx reload
|
||||||
fi
|
fi
|
||||||
|
|
|
@ -78,7 +78,7 @@ ifeq ($(ARCH),aarch64)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(TARGET_ARCH)-openwrt-linux-$(TARGET_BOARD).tar.gz
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION)-$(TARGET_ARCH)-openwrt-linux-$(TARGET_BOARD).tar.gz
|
||||||
PKG_SOURCE_URL:=https://cnt2.cf/webd/$(PKG_VERSION)/
|
PKG_SOURCE_URL:=https://webd.cf/webd/$(PKG_VERSION)/
|
||||||
PKG_HASH:=skip
|
PKG_HASH:=skip
|
||||||
|
|
||||||
UNTAR_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
UNTAR_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||||
|
|
Loading…
Reference in New Issue