Source code for management.nginx_paths

"""Nginx TLS configuration paths."""

from pathlib import Path

# Define paths for Nginx TLS files
[docs] NGINX_PATH = Path(__file__).parent.parent.parent / 'docker/trustpoint/nginx/tls'
[docs] NGINX_KEY_PATH = NGINX_PATH / Path('nginx-tls-server-key.key')
[docs] NGINX_CERT_PATH = NGINX_PATH / Path('nginx-tls-server-cert.pem')
[docs] NGINX_CERT_CHAIN_PATH = NGINX_PATH / Path('nginx-tls-server-cert-chain.pem')