0
0
Ansible playbook for setting up VPSs
Go to file
2023-11-11 05:36:40 +08:00
roles Inital commit 2023-11-11 02:06:42 +08:00
vars Updated README.md and inventory 2023-11-11 05:36:40 +08:00
.gitignore Inital commit 2023-11-11 02:06:42 +08:00
LICENSE Inital commit 2023-11-11 02:06:42 +08:00
ORACLECLOUD.md Inital commit 2023-11-11 02:06:42 +08:00
README.md Updated README.md and inventory 2023-11-11 05:36:40 +08:00
set-up.yml Inital commit 2023-11-11 02:06:42 +08:00
staging Updated README.md and inventory 2023-11-11 05:36:40 +08:00

Ansible playbook to set up VPSs

An Ansible playbook to set up VPSs (for Opnxng). It applies to Debian-based servers in any architecture.

Before running

To install Debian on Oracle Cloud, refer to this documentation.

On a fresh Debian system, replace the default debian user:

# Give root account a password
sudo passwd root

# Configurate SSHD to temporarily allow root login with password
sudo nano /etc/ssh/sshd_config.d/sshd.conf

# Login as root, add new user and delete debian user
su root
sudo groupmod -n [user] debian
sudo usermod -l [user] debian
sudo usermod -d /home/[user] -m [user]
sudo passwd [user]
sudo userdel debian
sudo rm -r /home/debian

# Switched [user] 
su [user]
sudo passwd -dl root

# Configurate SSHD again to allow [user] login and to set a custom port
sudo nano /etc/ssh/sshd_config.d/sshd.conf

Configurations

You can modify the packages to be installed and the UFW rules.

Passwords and other sensitive data are kept locally as encrypted variables in secrets.yml.

Contact

Please contact us via email if you discover any vulnerability or area for improvement in our infrastructure. We would truly appreciate it.