spirinolas

joined 2 years ago
[–] spirinolas@lemmy.world 5 points 4 days ago

I even upgraded the system without a clean installation and everything worked perfectly and I have huge customization in my pc.

[–] spirinolas@lemmy.world 3 points 1 week ago

My rule of thumb is, if he doesn't give you the solution right off the bat he won't give you one. If that happens either fix it yourself or start a new chat and reformulate the question completely.

[–] spirinolas@lemmy.world 131 points 2 weeks ago* (last edited 2 weeks ago) (11 children)

Trump isn't stupid, at least not that stupid. Your analogy would work better if instead of shooting his own foot he's shooting Uncle Sam's foot. You act confused because you think he works for Uncle Sam. He does not. He's a Russian asset: his job is to make sure Uncle Sam never walks again, while pretending he's not doing it on purpose so he can keep doing it.

When you look at it that way, all his actions make perfect sense. He works for Putin and he's doing a good job. Until people realize this he'll keep sabotaging the US.

[–] spirinolas@lemmy.world 3 points 3 weeks ago

They are eating the dogs and now they are tariffing the penguins.

[–] spirinolas@lemmy.world 95 points 3 weeks ago* (last edited 3 weeks ago) (19 children)

Uh? Of course he isn't. Why would Putin tell him to put tariffs on himself? That makes no sense.

[–] spirinolas@lemmy.world 8 points 3 weeks ago

Yes, the rapist Brock Allen Turner is also the first thing that crossed my mind. How he got away after raping that girl and now is even trying to change his name.

[–] spirinolas@lemmy.world 5 points 4 weeks ago

Not much, just stare at Luigi's picture and droll.

 

I developed an app in Laravel that uses Google authentication, it works perfectly on my localhost. When I deployed it in my nginx server (ubuntu 24.04) I get the Google login correctly and it proceeds to my main page as expected. But after that, no route is accessible. All of them throw me a 404. I've been googling it for ages but I can't for the life of me find the solution for this.

EDIT: The 404 comes from Laravel, not nginx. The weird part is if I try php artisan route:list on the ser the routes are indeed missing but on the localhost they all show. The code is pretty much the same.

Here's is my app conf file:

server {
    server_name partituras-cmcgb.duckdns.org;
    root /var/www/html/partviewer/public;

    index index.php index.html index.htm;

    location / {
        try_files $uri $uri/ /index.php?$query_string;
    }

    location ~ \.php$ {
        include snippets/fastcgi-php.conf;
        fastcgi_pass unix:/var/run/php/php8.3-fpm.sock;
        fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
        include fastcgi_params;
    }

    location ~ /\.ht {
        deny all;
    }

    error_log /var/log/nginx/partviewer-error.log;
    access_log /var/log/nginx/partviewer-access.log;

    listen 443 ssl; # managed by Certbot
    ssl_certificate /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/fullchain.pem; # managed by Certbot
    ssl_certificate_key /etc/letsencrypt/live/partituras-cmcgb.duckdns.org/privkey.pem; # managed by Certbot
    include /etc/letsencrypt/options-ssl-nginx.conf; # managed by Certbot
    ssl_dhparam /etc/letsencrypt/ssl-dhparams.pem; # managed by Certbot

}
server {
    if ($host = partituras-cmcgb.duckdns.org) {
        return 301 https://$host$request_uri;
    } # managed by Certbot


    listen 80;
    server_name partituras-cmcgb.duckdns.org;
    return 404; # managed by Certbot


}