• 0 Posts
  • 3 Comments
Joined 1 year ago
cake
Cake day: June 13th, 2023

help-circle

  • I have to agree - this is classic reddit. Spez obviously couldn’t care less about namecalling.

    • The corp gets to use the CEO as a punching bag - which is pretty much his job description…

    • Redditors can feel good about upvoting a picture “sticking it to the man” while actually doing nothing - participating on a site that’s still reaming them

    • Buying all the reddit awards for the post, GIVING THE COMPANY THEY’RE SUPPOSEDLY STICKING IT TO MORE MONEY. Bullshit like this pisses me off after finding out the Lemmy devs pretty much make less than minimum wage with donations


  • I’m running a lot of services off my nginx reverse proxy. This is my general setup for each subdomain - each in its own config file. I wouldn’t consider this verbose in any way - and it’s never crashed on me

    service.conf

    server {
        listen       443 ssl http2;
        listen  [::]:443 ssl http2;
        server_name  [something].0x-ia.moe;
    
        include /etc/nginx/acl_local.conf;
        include /etc/nginx/default_settings.conf;
        include /etc/nginx/ssl_0x-ia.conf;
    
        location / {
            proxy_pass              http://[host]:[port]/;
        }
    }