

server {
    listen 80;
    server_name codetu.be;

    location / {
        rewrite ^ https://$server_name$request_uri permanent;
    }
}

