This docker pod runs two services:
- Captain Hook webhook server (python + flask)
- Static content server for subdomain pages (nginx)
These two services are in this repo as submodules.
See documentation page here: https://pages.charlesreid1.com/pod-webhooks
Source code on git.charlesreid1.com: https://git.charlesreid1.com/docker/pod-webhooks
Source code on github.com: https://github.com/charlesreid1-docker/pod-webhooks
The pages.charlesreid1.com subdomain is served from content
in the directory /www/pages.charlesreid1.com
.
To set this up with pages and sites that should exist already,
use the set up script at scripts/pages_init_setup.py
and
run it on the pages.charlesreid1.com server:
python scripts/pages_init_setup.py
This will create the /www/pages.charlesreid1.com/
directory
structure and will clone several repositories to populate it
with content.
Since this is probably the only thing you'll care about once everything is actually running... until it breaks.
See Running.md for info about running this docker pod.
- Running the Docker Pod from Comand Line
- Workflow for Docker Pod Updates
See Services.md for info about running startup services.
- Running the Docker Pod as a Startup Service
- Running Captain Hook's Canary (Script)
Enable/disable service (installs/uninstalls, but does not start):
sudo systemctl (enable|disable) pod-webhooks.service
sudo systemctl (enable|disable) captain-hook-canary.service
Start/stop:
sudo systemctl (start|stop) pod-webhooks.service
sudo systemctl (start|stop) captain-hook-canary.service
See Captain Hook's Canary for details on the canary script that allows the webhooks docker pod to trigger itself to be re-loaded when there are new hooks added to captain hook.
The static files hosted on charlesreid1.com subdomains are contained in
subdirectories of /www/*.charlesreid1.com/
and this is
mounted by the subdomains docker container that has rules
set up for which subdomains to serve.
Captain Hook mounts the /www
folder, which is served by the subdomains
nginx server, as well as the hooks folder in the Captain Hook repository
(that's at b-captain-hook/hooks
).
When there is a change pushed to a particular branch on git.charlesreid1.com,
the git.charlesreid1.com server will check if there is a corresponding hook that's
been added to Captain Hook for that repo and branch. If so, git.charlesreid1.com
runs that script. For pages.charlesreid1.com, that's usually just a git pull
on the contents of /www/pages.charlesreid1.com/my-page
.
Captain Hook presents a bit of a paradox: what happens when Captain Hook installs a hook for itself, and detects that Captain Hook itself has changed?
In this case, the webhooks docker pod needs to be able to tell the host machine to restart the webhooks docker pod.
This is done by Captain Hook's Canary. This is a service script that checks every 10 seconds for a trigger file in a directory mounted between the host and container. If the trigger file is present, the host will update its copy of Captain Hook, then restart the webhooks-subdomains docker pod.
As per the dotfiles/debian repo,
the captain_hook_canary.sh
canary will restart the webhooks docker pod if it
detects the presence following file:
/tmp/triggers/push-b-captain-hook-master
(The canary script will remove this file once it has restarted the webhooks docker pod.)
Now, a hook can be added to Captain Hook that will be run when there is a push event
on the master branch of bots/b-captain-hook.
By creating a hook named push-b-captain-hook-master
in the
hooks/
directory of Captain Hook, and having it simply run
touch /tmp/triggers/push-b-captain-hook-master
,
this webhook can trigger the Captain Hook's Canary service script,
which triggers a restart of the webhooks docker pod.
Code: https://git.charlesreid1.com/bots/b-captain-hook/src/branch/master/hooks/push-b-captain-hook-master
The d-subodomains-nginx
container opens different ports for different
subdomains, and reverse-proxies requests from charlesreid1.com.
The port numbering starts at 7777 for pages.charlesreid1.com
and goes up from there, one port per subdomain.
Also see pod-charlesreid1 on git.charlesreid1.com for the nginx reverse proxy configuration.
Captain Hook runs a Flask server on port 5000 and listens for triggers from git.charlesreid1.com (gitea) web hooks. These web hooks must have the correct secret or the trigger will be ignored.
pod-webhooks runs on a virtual server somewhere.
This pod's nginx service provides a backend that is reverse-proxied by the machine running pod-charlesreid1 (and the whole https://charlesreid1.com frontend). It opens ports 7777+ and up (one per subdomain).
The pod-charlesreid1 docker pod (actually the d-nginx-charlesreid1 submodule in that pod) contains the nginx config files that control the reverse proxy behavior of https://charlesreid1.com.
Like the nginx service in this webhooks pod, the Captain Hook webhook service is also reverse-proxied by the main nginx frontend running https://charlesreid1.com with the pod-charlesreid1 docker pod. If a URL request for https://hooks.charlesreid1.com is received by the https://charlesreid1.com server, it is forwarded to the machine running the pod-webhooks docker pod, which decides whether it is a POST request (that should be sent to this pod's Captain Hook) or a GET request (that should be sent to this pod's nginx).