- Add explicit 644 permissions for overview.js and dashboard.css - Fixes HTTP 403 error when accessing the view Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
# Copyright (C) 2024 CyberMind.fr
|
|
# Licensed under Apache-2.0
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=luci-app-network-tweaks
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=3
|
|
PKG_ARCH:=all
|
|
PKG_LICENSE:=Apache-2.0
|
|
PKG_MAINTAINER:=CyberMind <contact@cybermind.fr>
|
|
|
|
LUCI_TITLE:=Network Tweaks - Auto Proxy DNS & Hosts
|
|
LUCI_DESCRIPTION:=Automatically generates DNS and hosts entries from enabled vhosts for seamless local domain resolution
|
|
LUCI_DEPENDS:=+luci-base +rpcd +luci-app-vhost-manager +dnsmasq
|
|
LUCI_PKGARCH:=all
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
/etc/config/network_tweaks
|
|
endef
|
|
|
|
# File permissions
|
|
PKG_FILE_MODES:=/usr/libexec/rpcd/luci.network-tweaks:root:root:755 \
|
|
/usr/sbin/network-tweaks-sync:root:root:755 \
|
|
/etc/init.d/network-tweaks:root:root:755 \
|
|
/etc/hotplug.d/iface/99-network-tweaks:root:root:755 \
|
|
/www/luci-static/resources/view/network-tweaks/overview.js:root:root:644 \
|
|
/www/luci-static/resources/network-tweaks/dashboard.css:root:root:644
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
# call BuildPackage - OpenWrt buildroot signature
|