This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/usr/bin/env python3 | |
| # -*- coding: utf-8 -*- | |
| import asyncio | |
| import logging | |
| import os | |
| import re | |
| import random | |
| from aiogram import Bot, Dispatcher, F | 
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | #!/bin/bash | |
| # --- Configuration --- | |
| # Set the base directory for the Coolify proxy | |
| PROXY_DIR="/data/coolify/proxy" | |
| CERT_DIR="$PROXY_DIR/certs" | |
| DYNAMIC_CONF_DIR="$PROXY_DIR/dynamic" | |
| DYNAMIC_CONF_FILE="$DYNAMIC_CONF_DIR/custom-certs.yaml" | |
| # --- Helper Functions --- | 
OlderNewer
        