22 lines
471 B
YAML
22 lines
471 B
YAML
---
|
|
# nombre de la imagen a bajar
|
|
nginx_image: nginx
|
|
|
|
# certificado y clave privadas para HTTPS
|
|
nginx_ssl_certificate: /etc/ssl/certs/host-rectorado.pem
|
|
nginx_ssl_private_key: /etc/ssl/private/host-rectorado.key
|
|
|
|
# nombre del volumen de configuracion
|
|
nginx_config_volume: nginx_conf
|
|
|
|
# nombre del volumen web
|
|
nginx_webroot_volume: nginx_webroot
|
|
|
|
# puertos a publicar
|
|
nginx_publish_ports:
|
|
- "80:80"
|
|
- "443:443"
|
|
|
|
# forzar redireccion a https?
|
|
nginx_redirect_https: yes
|