~dricottone/container-images

ref: adc564384c5146962d2801b69d1b5edd651d189f container-images/srht-meta-core/README.md -rw-r--r-- 764 bytes
adc56438Dominic Ricottone Late Alpine 3.19 updates 7 months ago

#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