-
Step 1 (ulimit): open the sysctl.conf and add this line fs.file-max = 65536
vi /etc/sysctl.conf
add following at end of file in above file:
fs.file-max = 65536
save and exit.
# | |
# reference: http://namsep.blogspot.com/2015/12/yad-centos-7-iptables-ipset-and-fail2ban.html | |
# reference: http://pkgs.fedoraproject.org/cgit/ipset.git/tree/ipset.service | |
# file location: /etc/systemd/system/ipset.service | |
# nano /etc/systemd/system/ipset.service | |
# systemctl daemon-reload | |
# systemctl enable ipset.service | |
# mkdir /etc/ipset | |
# touch /etc/ipset/ipset | |
# ...do something with ipset... |
<?php | |
// User credentials & Host info | |
$username = 'admin'; | |
$password = ''; | |
$hostAddress = "192.168.88.1"; // Add port if any, ex, 922.168.88.1:81 | |
$protoScheme = "http"; // If SSL, ex, https | |
?> |
types { | |
text/html html htm shtml; | |
text/css css; | |
text/xml xml; | |
image/gif gif; | |
image/jpeg jpeg jpg; | |
application/javascript js; | |
application/atom+xml atom; | |
application/rss+xml rss; |
## Bullseye (11) | |
deb http://deb.debian.org/debian bullseye main contrib non-free | |
deb-src http://deb.debian.org/debian bullseye main contrib non-free | |
deb http://deb.debian.org/debian bullseye-updates main contrib non-free | |
deb-src http://deb.debian.org/debian bullseye-updates main contrib non-free | |
deb http://deb.debian.org/debian bullseye-backports main contrib non-free | |
deb-src http://deb.debian.org/debian bullseye-backports main contrib non-free |
nala
wget https://gitlab.com/volian/volian-archive/uploads/b20bd8237a9b20f5a82f461ed0704ad4/volian-archive-keyring_0.1.0_all.deb
wget https://gitlab.com/volian/volian-archive/uploads/d6b3a118de5384a0be2462905f7e4301/volian-archive-nala_0.1.0_all.deb
sudo apt install ./volian-archive*.deb
sudo apt update && sudo apt install nala
rm -f volian-archive*.deb
REG ADD HKEY_LOCAL_MACHINE\SOFTWARE\Wireguard /v "MultipleSimultaneousTunnels" /t REG_DWORD /d 1
docker-compose.yml
services:
redis:
image: redis:7.0.8-alpine
container_name: unbound-redis
command: redis-server --save 43200 1 7200 100 --loglevel warning --rdbchecksum no
volumes:
- "./redis:/data"