feat(home-server): add forgejo admin user
This commit is contained in:
parent
e45c34c465
commit
933d7b6994
4 changed files with 40 additions and 5 deletions
system
|
@ -15,14 +15,14 @@
|
|||
table inet allow-incoming-traffic {
|
||||
chain allow-incoming {
|
||||
type filter hook input priority -100; policy accept;
|
||||
tcp dport {80, 443} meta mark set 0x80000;
|
||||
udp dport {80, 443} meta mark set 0x80000;
|
||||
tcp dport {80, 443, 2222} meta mark set 0x80000;
|
||||
udp dport {80, 443, 2222} meta mark set 0x80000;
|
||||
}
|
||||
|
||||
chain allow-outgoing {
|
||||
type route hook output priority -100; policy accept;
|
||||
tcp sport {80, 443} meta mark set 0x80000;
|
||||
udp sport {80, 443} meta mark set 0x80000;
|
||||
tcp sport {80, 443, 2222} meta mark set 0x80000;
|
||||
udp sport {80, 443, 2222} meta mark set 0x80000;
|
||||
}
|
||||
}
|
||||
'';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue