# Key considerations for algorithm "RSA" ≥ 2048-bit
openssl genrsa -out server.key 2048
# Key considerations for algorithm "ECDSA" ≥ secp384r1
# List ECDSA the supported curves (openssl ecparam -list_curves)
openssl ecparam -genkey -name secp384r1 -out server.keyEnable forwarding:
sysctl -w net.ipv4.ip_forward=1Create this script eg sudo nano iptables.sh
eth=$1
proto=$2
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
| Shader "Custom/Warlocracy/CharacterShader" | |
| { | |
| Properties | |
| { | |
| _MainTex ("Sprite Texture", 2D) = "white" {} | |
| _OutlineColor ("Outline Color", Color) = (1,1,1,1) | |
| _OutlineWidth ("Outline Width", float) = 2 | |
| [HideInInspector] _Color ("Tint", Color) = (1,1,1,1) | |
| [HideInInspector] _RendererColor ("RendererColor", Color) = (1,1,1,1) |
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
| sudo su | |
| //Setup Hostname | |
| hostnamectl set-hostname subdomain.domain.tld | |
| ## Basic | |
| sudo apt-get update && sudo apt-get -y upgrade && sudo apt-get autoremove -y && sudo apt-get install software-properties-common | |
| sudo add-apt-repository ppa:ondrej/php -y && add-apt-repository ppa:nginx/stable -y | |
| //Setup SWAP | |
| sudo fallocate -l 1G /swapfile; |