summaryrefslogtreecommitdiff
path: root/issues/genenetwork/http-https.gmi
blob: 9777185e32d1de6786cb2a908ae285fcc1ec3d0e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# 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

* assigned: pjotr, arthur, jgart
* type: bug
* priority: medium
* status: unclear
* keywords: GN2, http, https