/etc/security/limits.conf
elasticsearch hard memlock 100000
/etc/default/elasticsearch
| [Desktop Entry] | |
| Encoding=UTF-8 | |
| Name=Postman | |
| Exec=postman | |
| Icon=/opt/Postman/resources/app/assets/icon.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Development; | 
| git branch -m old_branch new_branch # Rename branch locally | |
| git push origin :old_branch # Delete the old branch | |
| git push --set-upstream origin new_branch # Push the new branch, set local branch to track the new remote | 
| server { | |
| listen 80; | |
| server_name www.example.com; | |
| root /var/www/vhosts/example.com/public/; | |
| location / | |
| { | |
| index index.php index.html index.htm; | |
| } |