This file contains 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 apt update -y && sudo apt upgrade -y && sudo snap refresh && sudo apt autoremove -y | |
sudo apt install nginx zip mysql-server software-properties-common | |
sudo ufw allow 'Nginx HTTP' | |
//add key to github | |
ssh-keygen -t rsa -b 4096 | |
cat ~/.ssh/id_rsa.pub | |
sudo add-apt-repository ppa:ondrej/php | |
sudo apt -y install php7.4 php7.4-xml php7.4-dom php7.4-intl php7.4-fpm php7.4-mysql |
This file contains 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
https://scr.online.sberbank.ru/api/fl/idgib-w-3ds | |
https://3dsec.sberbank.ru/mportal3/auth/login | |
https://acs1.sbrf.ru | |
https://acs2.sbrf.ru | |
https://acs3.sbrf.ru | |
https://acs4.sbrf.ru | |
https://acs5.sbrf.ru | |
https://acs6.sbrf.ru | |
https://acs7.sbrf.ru | |
https://acs8.sbrf.ru |
This file contains 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 | |
# installation jetbrains | |
j_url="https://data.services.jetbrains.com/products/download" | |
tmp_dir="$HOME/tmp_jb" | |
install_dir="/opt" | |
if [ "$(whoami)" != "root" ] | |
then | |
echo "Sorry, you are not root." | |
exit 1 | |
fi |