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
# === SETUP VARIABLES === | |
$cleanupScriptPath = "$env:ProgramData\guna-cleanup.ps1" | |
$taskName = "Guna Cleanup Task" | |
$taskTime = "10:00AM" | |
# === WRITE CLEANUP SCRIPT TO DISK === | |
$cleanupCode = @' | |
# Guna cleanup script | |
$regPath = "HKCU:\Software\Guna" |
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
<?php | |
/* | |
* This file is part of McCloudAdmin. | |
* Please view the LICENSE file that was distributed with this source code. | |
* | |
* 2021-2025 (c) All rights reserved | |
* | |
* MIT License | |
* |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta name="viewport" | |
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no" /> | |
<title>MythicalSystems | Code-Server</title> | |
<link rel="icon" href="https://avatars.githubusercontent.com/u/117385445" /> |
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
<VirtualHost *:80> | |
ServerName <domain> | |
RewriteEngine On | |
RewriteCond %{HTTPS} !=on | |
RewriteRule ^/?(.*) https://%{SERVER_NAME}/$1 [R,L] | |
</VirtualHost> | |
<VirtualHost *:443> | |
ServerName <domain> |