init.d: openwrt min disk space startup

This commit is contained in:
bol-van
2024-10-21 17:43:29 +03:00
parent d9e539f217
commit b058f9f128
5 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
chain tpws_re {
type nat hook prerouting priority dstnat; policy accept;
tcp dport {80,443} redirect to :900
}
chain tpws_out {
type nat hook output priority -100; policy accept;
tcp dport {80,443} skuid != daemon redirect to :900
}