summaryrefslogtreecommitdiff
path: root/issues/genenetwork/http-https.gmi
blob: 80306bf563a00b971fe6bb6039969a0d2da20cbf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# 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;
}
```

* assigned: pjotr, arthur, jgart