~dricottone/container-images

ref: bea5baf47cb3d3cbac3ddffe32e35d334650a101 container-images/srht-meta-core/README.md -rw-r--r-- 764 bytes
bea5baf4Dominic Ricottone sr.ht 1 year, 5 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# srht-meta-core


## Build and Deploy

```
make image
```


### Tags

 + `latest`

----

## Use

Deploy the web server for a sr.ht system's user account service.

Used by proxying from `nginx(8)`.
The below location should be added to the server configuration for
`meta.example.com`.

```
location / {
    proxy_pass http://localhost:5000;
}

location = /register {
    proxy_pass http://localhost:5000;
}

location /.well-known/oauth-authorization-server {
    proxy_pass http://localhost:5000;
}

```

The container needs to be reachable from `nginx(8)` on port 5000.
Consider either using a pod or creating a bridge network.

```
$conman run --detach --name srht-meta-core --restart always \
    registry.intra.dominic-ricottone.com/srht-meta-core:latest
```