this post was submitted on 21 Jan 2025
55 points (95.1% liked)

196

1602 readers
2572 users here now

Community Rules

You must post before you leave

Be nice. Assume others have good intent (within reason).

Block or ignore posts, comments, and users that irritate you in some way rather than engaging. Report if they are actually breaking community rules.

Use content warnings and/or mark as NSFW when appropriate. Most posts with content warnings likely need to be marked NSFW.

Most 196 posts are memes, shitposts, cute images, or even just recent things that happened, etc. There is no real theme, but try to avoid posts that are very inflammatory, offensive, very low quality, or very "off topic".

Bigotry is not allowed, this includes (but is not limited to): Homophobia, Transphobia, Racism, Sexism, Abelism, Classism, or discrimination based on things like Ethnicity, Nationality, Language, or Religion.

Avoid shilling for corporations, posting advertisements, or promoting exploitation of workers.

Proselytization, support, or defense of authoritarianism is not welcome. This includes but is not limited to: imperialism, nationalism, genocide denial, ethnic or racial supremacy, fascism, Nazism, Marxism-Leninism, Maoism, etc.

Avoid AI generated content.

Avoid misinformation.

Avoid incomprehensible posts.

No threats or personal attacks.

No spam.

founded 4 days ago
MODERATORS
 

i KNEW i’d find a good use for this domain.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 3 points 1 day ago* (last edited 15 hours ago) (1 children)

I did some testing for domain redirects, I think the best way to do a redirect (so you can use https) is using your own server (there might be some places that offer free cloud servers too tho)

first set up a dns record, with a name of @ (the root domain), type of A, and 'data' with the server's public ip address. (there might be an easier way to do this on your domain provider, it just needs to direct the domain to your server with a standard webpage configuration, you might also want to set up www to redirect to the root using a CNAME type record, or for this I guess it would probably be faster just to add another type A record to the same server and put server_name xn-blk.gay, www.xn-blk.gay; in the config)

then install nginx, put the following in the http section in /etc/nginx.conf:

include /etc/nginx/conf.d/*.conf;

I have the following config for an example redirect server (/etc/nginx/conf.d/test.conf):

server {
    listen 80;
    server_name test.adrian.place;

    # Redirect HTTP to HTTPS
    return 301 https://xkcd.com$request_uri;
}

server {
    listen 443 ssl;
    server_name test.adrian.place;
    http2 on;

    # Redirect all requests to the target URL
    return 301 https://xkcd.com$request_uri;
}

and then enable and start the nginx systemd service, run certbot to set up https, and then reload the service

Edit: If it's a home server you'll need to set up port forwarding for 443 and 80 ofc

[–] [email protected] 1 points 1 day ago (1 children)

all my hosting is handled through namecheap right now because i am both lazy and uneducated, BUT i’ve been looking into setting up a home server for unrelated reasons! i will absolutely be circling back to this comment ^^

[–] [email protected] 2 points 1 day ago (1 children)

you can do similar things for free with cloudflare, if you don’t have an aversion to using cloudflare

[–] [email protected] 1 points 1 day ago (1 children)

what’s the deal with cloudflare?

[–] [email protected] 3 points 1 day ago

some people are averse to it because some hugely high percentage of all websites run through it - for privacy reasons, that’s not a good thing - if they enshittify, their data set could be more valuable than metas