Update reverse proxy to use lua-resty-openidc image and adjust file paths in nginx.conf and docker-compose.yml

This commit is contained in:
2025-06-09 10:34:36 +02:00
parent e8b7db4edb
commit 5a874ad710
2 changed files with 7 additions and 6 deletions

View File

@@ -1,12 +1,12 @@
services:
reverse-proxy:
image: openresty/openresty:alpine
image: ghcr.io/zmartzone/lua-resty-openidc:latest
container_name: demo-nginx-proxy
ports:
- "25700:80"
volumes:
- ./nginx.conf:/usr/local/openresty/nginx/conf/nginx.conf:ro
- ./auth.lua:/usr/local/openresty/nginx/conf/auth.lua:ro
- ./nginx.conf:/etc/nginx/nginx.conf:ro
- ./auth.lua:/etc/nginx/auth.lua:ro
environment:
- KEYCLOAK_CLIENT_SECRET=${KEYCLOAK_CLIENT_SECRET}
env_file: