

Copies of important documents or photos you cant afford to lose. Then leave it in a safe place. Encrypt it if you like.
Served in the Krogan uprisings. Now I run a podcast
Copies of important documents or photos you cant afford to lose. Then leave it in a safe place. Encrypt it if you like.
You can use a ddns such as duckdns or host on github pages with jekyll or something
Debian on the host and everything else in containers
I have the arr stack connected to gluetun doing its thing and then wireguard on the host. I only expose my reverse proxy to the host and can connect to the services through that.
Note the networks below, vpn_net allows it to talk to the gluetun network which has the other stuff. The gluetun and arr stuff are in a separate compose file that defines the network. Then the non vpn stuff connects to that network when it comes up
nginx:
image: nginx:1.25.4-alpine-slim
container_name: nginx
restart: always
volumes:
- /etc/letsencrypt/:/etc/letsencrypt/
- ./nginx/nginx.conf:/etc/nginx/nginx
- ./nginx/conf/:/etc/nginx/conf.d/:ro
- ./nginx/htpasswd:/etc/apache2/.htpasswd:ro
- /var/log/nginx:/var/log/nginx/
- ./www/html/:/var/www/html/:ro
- ./content/Movies:/var/www/media/Movies:ro
- ./content/Shows:/var/www/media/Shows:ro
ports:
- 443:443
security_opt:
- no-new-privileges
networks:
- reverse-proxy_service1
- reverse-proxy_serviceN
- vpn-stack_vpn-net
depends_on:
- service1
- serviceN
https://torrentfreak.com/spotifys-beta-used-pirate-mp3-files-some-from-pirate-bay-170509/
Why is it not piracy when the likes of meta downloads millions of books but it is when random internet user does
As to the question I would say something self hosted that way they can’t take away your music at some point.
Probably show them “have i been pwned” to get their attention first
Pix is great. It makes things so much easier. Everyone uses it from the guy selling drinks on the beach to airlines. Previously you had to have a card machine.
The closest we have in the EU would be like Revolut.
É isso aí meu fi .
EU one as it is the most compatible. Its also smaller for travelling and is compatible with Brazil.
The one in skyrim who lives in the place with the yellow guards, can’t remember the name now but i returned later and killed her. <insert tragedy of darth plaguies meme>
Take up a dancing class or cooking. Go to a language meetup or yoga etc.
Still too high. Not that I would buy it anyway
Wish we would just ban them
And when a competitor arises they just buy them and repeat the process
Next it becomes the only way to play
Well i have the rp as i only want one port exposed. I have separate networks per service too to isolate things. Only the things that need to talk to each other can.
My stuff is only accessible on the lan and via the vpn and even then only certain ips have access to certain things.
In your case it might be different , but generally a reverse proxy is better as you can have a single point of access to secure and you are not exposing all of your ports to the host or the internet.