This file contains 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 | |
# | |
# A little Mastodon hygeine. Keeping the storage nice and tidy. | |
# Get to where the script needs to go | |
cd /home/mastodon/live/bin | |
# Clean out accounts that have never interacted with anyone on this instance. | |
RAILS_ENV=production /home/mastodon/live/bin/tootctl accounts prune |
This file contains 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 | |
/** | |
* Clean WHMCS Logs | |
* | |
* Based on the script by @linux4me at: | |
* https://whmcs.community/topic/289637-database-cleanup-operations-tbllog_register-and-tblactivitylog/ | |
* | |
* This script deletes records from the WHMCS `tbllog_register` table that are older than the specified date. | |
* This is useful for keeping the database size down because WHMCS adds records every 5 minutes when the cron runs. | |
* |
This file contains 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
<p>Dear {$client_name},</p> | |
<p><strong>PLEASE PRINT THIS MESSAGE FOR YOUR RECORDS – PLEASE READ THIS EMAIL IN FULL.</strong></p> | |
<p>We are pleased to inform you that the VPS you ordered has been set up.</p> | |
<p><strong>Server Details<br /></strong>=============================</p> | |
<p>{$service_product_name} - <a title="Manage {$service_product_name}" href="{$whmcs_url}clientarea.php?action=productdetails&id={$service_id}" target="_blank" rel="noopener">Click to Manage</a></p> | |
<p>ServerName: {$service_domain}<br />Main IP: {$service_dedicated_ip}<br />Root pass: {$service_password}<br />{if $service_assigned_ips} IP Address Allotted: {$service_assigned_ips} {/if}</p> | |
<p><strong>Client Area<br /></strong>=============================</p> | |
<p>Manage Service from Client Area: <a href="{$whmcs_url}clientarea.php?action=productdetails&id={$service_id}">Click Here</a></p> | |
<p><strong>Manager Details<br /></strong>=============================</p> | |
<p>URL: <a>https://{$service_server_hostname}:4083</a><br />Username: |
This file contains 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
ಠ_ಠ | |
( ͡° ͜ʖ ͡°) | |
¯\_(ツ)_/¯ | |
(╯°□°)╯︵ ┻━┻ | |
http://www.fileformat.info/convert/text/upside-down.htm | |
WRTTN http://wrttn.me/30dbfd/ | |
Unicode Emoticons |
This file contains 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
rpm -ivh https://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm | |
rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-7.rpm | |
yum -y install redis --enablerepo=remi --disableplugin=priorities | |
systemctl enable redis | |
systemctl start redis |
This file contains 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 SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | |
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | |
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | |
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | |
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | |
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
This file contains 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/sh | |
# Downloads and runs the DBT2 benchmark for MySQL. | |
# ================================================ | |
# | |
# Tested with MySQL 8.0.17 - CentOS 8 - 2020-09-14 | |
# Tested with MySQL 8.0.21 - Fedora 32 - 2020-09-14 | |
# | |
# On a bare metal server, Xeon E5-1650v4 6x (12x HT) 3.60GHz, 64GB DDR4 2666, NVMe drive, with: | |
# - innodb_buffer_pool_size = 32GB |
This file contains 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/sh | |
for domainhash in `cat /etc/userdomains | grep "\." | sed 's/ //'` | |
do | |
read domain user <<<$(echo $domainhash | sed 's/:/ /'); | |
find /home/${user}/mail/${domain}/*/.Trash/{cur,new,tmp}/ -type f | xargs -ifile rm -f file | |
find /home/${user}/mail/${domain}/*/.Junk/{cur,new,tmp}/ -type f | xargs -ifile rm -f file | |
done |
This file contains 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/sh | |
/sbin/modprobe nf_conntrack_ftp 2>&1 >/dev/null | |
IPTABLES='/sbin/iptables' | |
# policy | |
$IPTABLES -P INPUT DROP | |
$IPTABLES -P OUTPUT DROP | |
$IPTABLES -P FORWARD ACCEPT | |
$IPTABLES -F | |
$IPTABLES -X | |
$IPTABLES -Z |
This file contains 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
#301 Redirects for .htaccess | |
#Redirect a single page: | |
Redirect 301 /pagename.php http://www.domain.com/pagename.html | |
#Redirect an entire site: | |
Redirect 301 / http://www.domain.com/ | |
#Redirect an entire site to a sub folder | |
Redirect 301 / http://www.domain.com/subfolder/ |
NewerOlder