Adding few docs comments, minor fixes

This commit is contained in:
Miguel Gagliardo 2024-04-06 09:10:26 +01:00
parent 2b11e01506
commit 5b272cc018
2 changed files with 7 additions and 2 deletions

View File

@ -2,9 +2,11 @@
## Prerequisites ## Prerequisites
- A Linux VM with Ubuntu Server (20.04 minimum, 22.04 recommended) - A Linux VM with Ubuntu Server (20.04 minimum, 22.04 recommended).
- A Domain name (can be root or subdomain) but it is a must the A record for the domain to be pointed to the server's public IP. - A Domain name (can be root or subdomain) but it is a must the A record for the domain to be pointed to the server's public IP.
- e.g. `example.com A 1.1.1.1`: Being `example.com` the domain record and `1.1.1.1` the public IP of the server - e.g. `example.com A 1.1.1.1`: Being `example.com` the domain record and `1.1.1.1` the public IP of the server.
- Ports `80` and `443` MUST be accessible from the internet to the server.
- This installation does not yet support a server running behind a proxy.
## Components ## Components

View File

@ -15,6 +15,9 @@ mkdir -p ${BASE_DIR}
cp -R . ${BASE_DIR} cp -R . ${BASE_DIR}
cd ${BASE_DIR} cd ${BASE_DIR}
# Disable "Pending Kernel upgrade" banner
sed -i "s|#\$nrconf{kernelhints} = -1;|\$nrconf{kernelhints} = -1;|g" /etc/needrestart/needrestart.conf
# Baseline utils # Baseline utils
echo -e "Installing baseline utils\n" echo -e "Installing baseline utils\n"
apt update apt update