I used OpenResty to create a reverse proxy to try various authentication methods.
- openresty/openresty:1.21.4.1-0-bullseye-fat
- redis:8.0-M02-bookworm
- install VSCode, Docker
- install VSCode Extensions Dev ContainerS
- On the VSCode,
Ctrl shift p
and runDev Containers: Rebuild Containers
docker compose up -d
On the VSCode, Ctrl shift p
and run Dev Containers: Rebuild Containers
Note
OpenResty process is running at 1
root 1 0 0 09:38 ? 00:00:00 nginx: maste> r process openresty -g daemon off;
Therefore, killing the process will restart OpenResty.
kill 1
Note
access.log, error.log are redirected to stdout.
ls -l /usr/local/openresty/nginx/logs/access.log
lrwxrwxrwx 1 root root 11 May 25 2022 /usr/local/openresty/nginx/logs/access.log -> /dev/stdout
So, the easiest way is docker logs
# access.log, error.log
docker compose logs reverse_proxy_app
# eventlogs
cat /usr/local/openresty/nginx/logs/error.log