skip to Main Content

Nginx – Curity Phantom Token Scopes

I set up a simple docker-compose deployment with a nginx default.conf.template. docker-compose.yml services: nginx: build: ./nginx ports: - "80:80" volumes: - ./nginx/nginx.conf:/etc/nginx/nginx.conf - ./nginx/default.conf.template:/etc/nginx/templates/default.conf.template environment: NGINX_HOST: localhost NGINX_PORT: 80 BACKEND1_HOST: backend1 BACKEND1_PORT: 8081 BACKEND2_HOST: backend2 BACKEND2_PORT: 8082 BACKEND3_HOST: backend3 BACKEND3_PORT:…

VIEW QUESTION
Back To Top
Search