PowerDNS is not designed to provide recursive results. It is intended to act only as an authoritative server for the domains it serves. This implies it will be serving domain data to other hosts.
sudo apt-get install pdns-server pdns-recursor
https://demo.azuracast.com/ | |
tls self_signed | |
root src | |
redir / https://azuracast.com/ 302 | |
log stdout | |
errors stdout |
#!/usr/bin/env bash | |
# | |
# Pixel.horse Easy Installer | |
# | |
# Drop this script into a folder you want to spin up Pixel.horse in, then run it! | |
# - Pull the script to a local file (i.e. click the "Raw" button on the top right) | |
# - Run `chmod a+x ./this_script_name.sh` | |
# - Run `./this_script_name.sh` as your regular user (not root) | |
# | |
# |
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Server-sent events demo (Centrifugo)</title> | |
<!-- style the indicators: -isonline, -islive, isrequest, progress bar --> | |
<style> | |
.label { border-radius: 0.1rem; padding: .1rem .2rem; background: #f0f1f4; color: #5b657a; display: inline-block; } | |
.label.label-success { background: #32b643; color: #fff; } |
if [ -f /var/run/rebooting-for-updates ]; then | |
# start from where we left off on reboot | |
sed -i '/bash/d' ~/.zshrc | |
sudo rm -f /var/run/rebooting-for-updates | |
echo "continuing after shell reload.." | |
else | |
echo "running script for the first time" |
<?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. | |
* |