💾 Archived View for thebird.nl › gn-gemtext-threads › issues › genenetwork › http-https.gmi captured on 2023-06-14 at 14:19:05. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-04-28)

-=-=-=-=-=-=-

Arthur mentioned last meet that GeneNetwork2 does not redirect http urls to https.

He'd like http to redirect to https.

http://genenetwork.org/ -> https://genenetwork.org/

nginx snippet

if ($scheme = http) {
    return 301 https://$server_name$request_uri;
}

Tags