2021-04-11 03:51:00 +07:00
|
|
|
---
|
2019-11-02 21:32:58 +07:00
|
|
|
version: '3'
|
2017-11-02 06:37:10 +07:00
|
|
|
services:
|
|
|
|
nginx-portal:
|
|
|
|
image: nginx:alpine
|
|
|
|
volumes:
|
2018-03-04 18:29:11 +07:00
|
|
|
- ./example/compose/nginx/portal/nginx.conf:/etc/nginx/nginx.conf
|
|
|
|
- ./example/compose/nginx/portal/ssl:/etc/ssl
|
2017-11-02 06:37:10 +07:00
|
|
|
networks:
|
2019-03-24 21:15:49 +07:00
|
|
|
authelianet:
|
2019-03-28 05:09:01 +07:00
|
|
|
aliases:
|
|
|
|
- public.example.com
|
|
|
|
- secure.example.com
|
|
|
|
- login.example.com
|
2019-11-02 21:32:58 +07:00
|
|
|
- duo.example.com
|
2019-03-24 21:15:49 +07:00
|
|
|
# Set the IP to be able to query on port 443
|
|
|
|
ipv4_address: 192.168.240.100
|
2021-04-11 03:51:00 +07:00
|
|
|
...
|