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
#!/bin/bash | |
while true | |
do | |
java -Xmx1G -Xms1G -jar server.jar | |
echo "Waiting 2 seconds to restart server" | |
sleep 2 | |
done |
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
# ~/.bashrc: executed by bash(1) for non-login shells. | |
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc) | |
# for examples | |
# If not running interactively, don't do anything | |
[ -z "$PS1" ] && return | |
# don't put duplicate lines in the history. See bash(1) for more options | |
# ... or force ignoredups and ignorespace | |
HISTCONTROL=ignoredups:ignorespace |
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
auto vmbr2 | |
iface vmbr2 inet static | |
address 10.0.0.254 | |
netmask 255.255.255.0 | |
bridge_ports none | |
bridge_stp off | |
bridge_fd 0 | |
post-up echo 1 > /proc/sys/net/ipv4/ip_forward | |
post-up iptables -t nat -A POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j MASQUERADE | |
post-down iptables -t nat -D POSTROUTING -s '10.0.0.0/24' -o vmbr0 -j MASQUERADE |
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
#The config thinks that the custom.jar is in the server's base directory | |
[config] | |
name = Custom jar | |
source = | |
configSource = | |
category = Mods | |
[encoding] | |
#encode = system | |
#decode = system |
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
# Mod_security can interfere with uploading of content such as attachments. If you | |
# cannot attach files, remove the "#" from the lines below. | |
#<IfModule mod_security.c> | |
# SecFilterEngine Off | |
# SecFilterScanPOST Off | |
#</IfModule> | |
ErrorDocument 401 default | |
ErrorDocument 403 default | |
ErrorDocument 404 default |
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
# Use & for color codes. | |
# %p is where the player name will get inserted. | |
# %v is where the vault number will get inserted. | |
# %price is the price. | |
# %number is the vault number | |
# %converted is the number of vaults converted (where applicable) | |
# Made with love :) | |
title-name: "&4[&fPlayerVaults&4]:" | |
open-vault: "&fVault &a%v openen" |
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
server { | |
listen 80; | |
listen [::]80; | |
server_name YOURPHPMYADMIN.example.com; | |
index index.php | |
root /usr/share/phpmyadmin; | |
location ~ \.php$ { |
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
server { | |
listen 80; | |
listen [::]80; | |
server_name YOURPHPMYADMIN.example.com; | |
index index.php | |
root /usr/share/phpmyadmin; | |
location ~ \.php$ { |
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
# This is the main configuration file for Spigot. | |
# As you can see, there's tons to configure. Some options may impact gameplay, so use | |
# with caution, and make sure you know what each option does before configuring. | |
# For a reference for any variable inside this file, check out the Spigot wiki at | |
# http://www.spigotmc.org/wiki/spigot-configuration/ | |
# | |
# If you need help with the configuration or have any questions related to Spigot, | |
# join us at the IRC or drop by our forums and leave a post. | |
# | |
# IRC: #spigot @ irc.spi.gt ( http://www.spigotmc.org/pages/irc/ ) |
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
<div class="container"> | |
<br /><br /> | |
{$SESSION_FLASH} | |
<div class="jumbotron jumbotron-homepage"> | |
<h1>{$SITENAME}</h1> | |
<p>{$PLAYERS_ONLINE}</p> | |
<p>{$CONNECT_WITH}</p> | |
</div> | |
<div class="row"> | |
<div class="col-md-9"> |
NewerOlder