This repository contains a Dockerfile for creating an OpenResty image that includes the SPNEGO authentication module.
- Based on
openresty/openresty
. - Includes the SPNEGO authentication module for NGINX.
- Ready to use with default configuration.
To build the Docker image, run:
docker build -t my-openresty-spnego:latest .
To run a container using the built image:
docker run -d -p 80:80 -p 443:443 my-openresty-spnego:latest
The image uses the default OpenResty configuration. If you wish to use a custom configuration, mount your configuration file into the container at /usr/local/openresty/nginx/conf/nginx.conf
.