
welcome to the linux side :3
fox surfs the internet waves…
otherkin fox-like creature
There is no link between the informational realm and the physical realm. Proof of work is the only thing that creates this link in a probabilistic fashion, because it creates information that speaks for itself. — Gigi
welcome to the linux side :3
not with trollstore
ser the word “they” exists 😂
glad you think so!
yeah, i agree with the OP. decentralized networks have a hump thats hard to smooth out, and activitypub isnt the best protocol in the furst place.
that makes more sense x3
wait, the battery is behind the screen?
1: not very hard actually, the hardest part is gettin the cert onto your other devices x3
all you need to do is add each subdomain to the cert, add ssl_certificate
and ssl_certificate_key
to the http
block, then enable ssl for each subdomain, like so:
http {
# cert
ssl_certificate /etc/nginx/public.crt;
ssl_certificate_key /etc/nginx/private.key;
server {
listen 12345:443 ssl;
server_name pi.hole;
location / {
proxy_pass http://localhost:80;
}
}
server {
listen 12345:443 ssl;
server_name fox.hole;
location / {
proxy_pass http://localhost:621;
}
}
}
2: correct, all traffic goes through nginx.
nice :3