2021-04-10 20:51:00 +00:00
|
|
|
---
|
2019-11-02 14:32:58 +00:00
|
|
|
version: '3'
|
2017-11-01 23:37:10 +00:00
|
|
|
services:
|
|
|
|
nginx-portal:
|
|
|
|
image: nginx:alpine
|
|
|
|
volumes:
|
2018-03-04 11:29:11 +00:00
|
|
|
- ./example/compose/nginx/portal/nginx.conf:/etc/nginx/nginx.conf
|
2023-02-11 03:11:40 +00:00
|
|
|
- ./common/pki:/pki
|
2017-11-01 23:37:10 +00:00
|
|
|
networks:
|
2019-03-24 14:15:49 +00:00
|
|
|
authelianet:
|
2019-03-27 22:09:01 +00:00
|
|
|
aliases:
|
|
|
|
- public.example.com
|
|
|
|
- secure.example.com
|
|
|
|
- login.example.com
|
2019-11-02 14:32:58 +00:00
|
|
|
- duo.example.com
|
2019-03-24 14:15:49 +00:00
|
|
|
# Set the IP to be able to query on port 443
|
|
|
|
ipv4_address: 192.168.240.100
|
2021-04-10 20:51:00 +00:00
|
|
|
...
|