So she did half of the work
I like sysadmin, scripting, manga and football.
So she did half of the work
Damm I think I might do some bulldozing sometimes, but is fair game when splitting into a different file for organization?
It’s been a while since I last used but I still have supergrub on mine. Also Tails
Terminate the ssl connection at a reverse proxy hosted in your home server, and instead useiptables to redirect the traffic through the wireguard interface
It’s been a long time since I did forwarding through wireguard so this might be outdated, missing info or actually doing unneeded stuff but I had this notes saved in some old iptables personal documentation from like 4 years ago that might shed you some light:
Allow first packet to start the connection
iptables -A FORWARD -i eth0 -o wg0 -p tcp --syn --dport 80 -m conntrack --ctstate NEW -j ACCEPT
iptables -A FORWARD -i eth0 -o wg0 -p tcp --syn --dport 443 -m conntrack --ctstate NEW -j ACCEPT
Allow already established connections
iptables -A FORWARD -i eth0 -o wg0 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
iptables -A FORWARD -i wg0 -o eth0 -m conntrack --ctstate ESTABLISHED,RELATED -j ACCEPT
Send whatever arrives via port 80 or 443 to the other side of the wg tunnel
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 80 -j DNAT --to-destination 192.168.3.1
iptables -t nat -A PREROUTING -i eth0 -p tcp --dport 443 -j DNAT --to-destination 192.168.3.1
Modify source address so it can return
iptables -t nat -A POSTROUTING -o wg0 -p tcp --dport 80 -d 192.168.3.1 -j SNAT --to-source 192.168.3.2
iptables -t nat -A POSTROUTING -o wg0 -p tcp --dport 443 -d 192.168.3.1 -j SNAT --to-source 192.168.3.2
Try running from postgres the following query:
> UPDATE local_site SET private_instance = FALSE;
You have to search them up at least once so they fill some posts, but if you want comments somebody from your instance has to be actively subscribed:
There are directories of all the fediverse like https://browse.feddit.de/ that can help you discover easier.
I fed the article to ollama running gemma:2b and first point of summarization is:
**Key Points:** * The user is highly motivated and intelligent, but feels undervalued by the industry.
xd