Ubuntu increase SWAP file

Ubuntu increase SWAP file

From https://askubuntu.com/a/1066362 sudo swapoff /swapfile sudo fallocate -l 8G /swapfile sudo chmod 600 /swapfile sudo mkswap /swapfile sudo swapon /swapfile Verify: sudo swapon --show Make permanent: echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab
read more
Configure robots.txt

Configure robots.txt

The robots.txt file helps you to determine, which content of your website should be indexed by search engines. Remind that this file is just a kind of recommendation. The search engine might ignore this policy. Place the robots.txt file in...
read more