Sparky

joined 1 year ago
[–] [email protected] 2 points 8 months ago

"what is love?" (baby don't hurt me)

[–] [email protected] 18 points 8 months ago

What? But the factory must grow

[–] [email protected] 54 points 8 months ago

Or in physics terms, potential energy.

[–] [email protected] 6 points 8 months ago

Thx for the good read!

[–] [email protected] 5 points 8 months ago* (last edited 8 months ago) (2 children)

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

[–] [email protected] 23 points 8 months ago

1.5Tb data cap, jeez. I regularly push 6tb of monthly traffic by myself. This feels like mobile internet all over again, but now with wired...

[–] [email protected] 16 points 8 months ago (2 children)

Have you ever considered doctor pepper to be a woman?

[–] [email protected] 8 points 8 months ago

I feel like the marketing was the same for bonzi buddy...

[–] [email protected] 4 points 9 months ago

Hey $20 is $20

[–] [email protected] 1 points 9 months ago

Thx for the tip! I'll try to recalibrate it based on those instructions :3

[–] [email protected] 11 points 9 months ago (1 children)

Bro just lick a block of iron

[–] [email protected] 4 points 9 months ago (1 children)

I found a list of "user validated waifus" online, which is where most of them were picked from. Hatsune miku is the only one I knew from the start had to be there.

view more: ‹ prev next ›