123456789101112131415161718 |
- #!/usr/bin/fish
- # Install server stuff
- # SSH
- ## Install server
- sudo apt install openssh-server ;
- ## Config server
- sudo cp ./Templates/sshd_config /etc/ssh/ ;
- cp ./Templates/authorized_keys /home/jovian/.ssh/ ;
- ## Auto start ssh
- sudo systemctl enable ssh ;
- sudo service ssh restart ;
- # Web
- sudo apt install php ;
|