Posts by Rodrigo • 24 points
2 posts
-
-1
votes2
answers364
viewsA: Logic to get the lowest user read value
The problem is that you already initialize the lowest zero, so only if you impute negative numbers would you have a non-zero result. Take a look at the code below: def menor(size): menor = None if…
-
0
votes1
answer153
viewsA: Redirect Http to Https - Nginx with Let’s Encrypt
I do it differently: server { listen 80; server_name meudominio.com; rewrite ^(.*)$ https://$host/$1 permanent; } I believe if you want to do it this way I think it should be this way: server {…