Skip to content

Instantly share code, notes, and snippets.

View Lovinoes's full-sized avatar

Lovinoes Lovinoes

View GitHub Profile
@Lovinoes
Lovinoes / chckhost.txt
Created September 30, 2024 21:06
updated ip addresses of the check-host.net servers
209.14.69.16
93.123.16.89
45.95.168.235
77.75.230.51
65.109.182.130
195.154.114.92
185.37.147.117
167.235.135.184
141.98.234.68
129.227.242.140
@Prof-Bloodstone
Prof-Bloodstone / README.md
Last active September 3, 2024 15:07
Spigot restart script issues and solution

⚠️ This guide is for self-managed servers. If you rented a server and got a website through which you manage your server - you are on so called shared-hosting and this guide won't work for you.

What is spigot restart script

Spigot added a feature allowing for server to automatically restart on crashes, as well as when authorized user executes /restart command.

How it works

@trenutoo
trenutoo / migrate-pterodactyl.md
Last active April 21, 2025 07:39
Pterodactyl panel and wings migration

Pterodactyl Migration

Migrating panel

  1. Backup your hidden .env file containing the decryption APP_KEY from /var/www/pterodactyl

  1. Export the database, in this case ours is named panel
@Maxopoly
Maxopoly / iptables.rule
Last active April 8, 2025 01:06
IP tables for Minecraft
#You probably want to do this in root to reduce the amount of sudos required
su -
#Install iptables if you haven't already
#Alternatively use packet manager of your choice
apt-get install iptables
#Allow all incoming traffic to begin with
iptables -P INPUT ACCEPT
#Clean out any existing input rules. You may also remove the "INPUT" argument and run only "iptables -F" to clear all chains. When doing so, make sure there are no rules in other chains that you still need (list via "iptables -L"), for example Oracle cloud servers will have preset rules, which should not be removed.