# vim: set ts=4 sw=4 expandtab syntax=python:
"""

ngxutil
Nginx status reporting and cache manipulation utility

@author J. Hipps <jacobh@inmotionhosting.com>

"""
# pylint: disable=invalid-name
from socket import getfqdn

__version__ = "1.3.0"
__date__ = "29 Apr 2026"

default_vts_socket_path = '/var/run/nginx_status.sock'
default_cache_base = '/var/nginx/cache'
email_from_addr = 'root@' + getfqdn()
