Nice :3 I use the same server, just changed a few things and different theme etc.
Announcements
Announcements/Changelogs go here.
How do you get a different theme? I hate the white theme but didn't know you could change it.
I just downloaded the source and changed variables around. Working on adding an image now, which is giving me a pain in the ass to position xD coz i have to rebuild the project over and over to test.
Highly recommend building outside of docker if u want a quick test. I chose to stick with docker, which means every time i gotta create a new docker image just to see my changes, try to fix, repeat, etc.
Lemme know if u need help.
Nice domain btw, "shota nu" basically means "naked shota" in portuguese
That's great! nu means now in Swedish, Dutch, Norwegian and I think some other languages too. I love that it means naked shota in portuguese xD
It has the same meaning in french hahah "un shota nu" : "a naked shota", and in galician and catalan. It's what I use to remember what the domain name is, just thinking "naked shota".
I love this accidental double meaning I made it have. Truly, it was fate.
Can you please make http://shota.nu redirect to https? enabling hsts would also be nice.
First experience I had was typing it out from memory, seeing the blank nginx page, and looking up the announcement post thinking I had misremembered.
example nginx config
server {
listen 80;
#server_name shota.nu;
return 301 https://$server_name$request_uri;
}
server {
#listen 443 ssl;
#server_name shota.nu;
# max-age of 15768000 and over will get hsts permanently compiled into some static lists!
# If you're unsure about maybe disabling it later, reduce it to say 7884000
add_header Strict-Transport-Security "max-age=15768000; includeSubDomains; preload" always;
}
Also you may wanna add server_tokens off;
to your html{} block if you don't want to show off your 3 year old nginx that has been deprecated since 2021.
I was wondering why you were thinking the redirect wasn't working because I definitely had the redirect set. I remembered I was testing this on a subdomain at first as I was originally using a different server, decided to move to a server with more available storage. Turned out the redirect was still accounting for the old domain.
Forgot to do server_tokens off, thanks for reminding me. I'm just using the latest Debian 11 stable on that machine right now, so that'd explain the old Nginx version.
nice. how about hsts?
that should be enabled now too.
looking good, thx
Happy to help.
Is this a third party service or something you guys made?
I made it, not a thirdparty.