mirror of
https://github.com/dw-0/kiauh.git
synced 2025-12-24 08:13:36 +05:00
20 lines
951 B
Python
20 lines
951 B
Python
#!/usr/bin/env python3
|
|
|
|
# ======================================================================= #
|
|
# Copyright (C) 2020 - 2023 Dominik Willner <th33xitus@gmail.com> #
|
|
# #
|
|
# This file is part of KIAUH - Klipper Installation And Update Helper #
|
|
# https://github.com/dw-0/kiauh #
|
|
# #
|
|
# This file may be distributed under the terms of the GNU GPLv3 license #
|
|
# ======================================================================= #
|
|
import os
|
|
|
|
MODULE_PATH = os.path.dirname(os.path.abspath(__file__))
|
|
INVALID_CHOICE = "Invalid choice. Please select a valid value."
|
|
|
|
# ================== NGINX =====================#
|
|
NGINX_SITES_AVAILABLE = "/etc/nginx/sites-available"
|
|
NGINX_SITES_ENABLED = "/etc/nginx/sites-enabled"
|
|
NGINX_CONFD = "/etc/nginx/conf.d"
|