

That’s why you install it on someone else’s pc :)
Sorry for scaring developers
Norwegian proot with a taste for shitposting
Deeply sorry for my photoshop creations
Former account at Kbin
aspe:keyoxide.org:JYRRSWIKLZWX366Y4DONCIEYAE
That’s why you install it on someone else’s pc :)
I wouldn’t say my hostnames are very creative, but they all have some kind of backstory.
Main desktop: POwOful
It’s a pretty powerful desktop, so why not call it that :)
Laptop: LenOwO
Can you guess the laptop brand?
Server 1: Shitbox
It’s my first server box I ever built, so it’s underpowered and pretty shitty.
Server 2: Stowage
My proper server with actual data parity, and it’s pretty powerful
Server 3: Jank
This one is another shitmix of hardware with random harddrives in raid 0. I am aware that they’ll die at some point, and all of that data stored on it will be lost, so i use it as temporary storage whenever I need to copy something from one machine to another.
Robot vacuum: suckywucky
Yea…
I keep forgetting that some people need vpns to torrent.
That’s it… I sent my general practitioner a message to get tested for adhd and autism. It’s gonna be fun to find out where on the spectrum I land
Shadow legends?
If I recall correctly it’s for single sign on. Something something it making a secure session
Anything is python if you use it incorrectly enough
I’d say dbrand grip. It’s been 4 years since I bought my phone and case and it’s pretty much like new. The case has protected my phone screen from drops that I’m sure would’ve cracked the display if I were using a cheaper case.
If I remember correctly it switches to this logo during christmas
Wait till they see the vlc logo during christmas …
As a young Norwegian I can say that I’ve saved a bit of money by pirating. I have a nas with 10s of tb of movies disney or Warner bros can’t delete from my library.
Here’s the free oem app as an msix package as Microsoft removed the store link. link
(yes I did accidentally upload it to the wrong collection, but I don’t think I can change that)
“what is love?” (baby don’t hurt me)
Thx for the good read!
I switched from duckdns about a year ago as it failed to resolve the addresses for my jellyfin server. I ended up buying a domain from cloudflare for 3 years for about $4, and I self-hosted ddns updater to automatically grab the dynamic ip, and set it to a subdomain.
As for your nginx config, I’d imagine you could make 2 separate config files in sites-enabled
that are nearly identical, but listen for different domains.
Something like this:
#config file 1
server {
listen 80;
server_name example_a.com;
location / {
return 301 http://example_c.com$request_uri;
#or use an ip instead of example_c.com
}
}
#config file 2
server {
listen 80;
server_name example_b.com;
location / {
return 301 http://example_c.com$request_uri;
#or use an ip instead of example_c.com
}
}
#Or use "proxy_pass http://example_c.com;" in the location tag instead of "return 301..." if you want to reverse proxy the traffic
Test