Browse Source

Adding few docs comments, minor fixes

master
Miguel Gagliardo 5 months ago
parent
commit
5b272cc018
2 changed files with 7 additions and 2 deletions
  1. 4
    2
      README.md
  2. 3
    0
      matrix/install.sh

+ 4
- 2
README.md View File

2
 
2
 
3
 ## Prerequisites
3
 ## Prerequisites
4
 
4
 
5
-- A Linux VM with Ubuntu Server (20.04 minimum, 22.04 recommended)
5
+- A Linux VM with Ubuntu Server (20.04 minimum, 22.04 recommended).
6
 - 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.
6
 - 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.
7
-  - 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
7
+  - 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.
8
+- Ports `80` and `443` MUST be accessible from the internet to the server.
9
+  - This installation does not yet support a server running behind a proxy.
8
 
10
 
9
 ## Components
11
 ## Components
10
 
12
 

+ 3
- 0
matrix/install.sh View File

15
 cp -R . ${BASE_DIR}
15
 cp -R . ${BASE_DIR}
16
 cd ${BASE_DIR}
16
 cd ${BASE_DIR}
17
 
17
 
18
+# Disable "Pending Kernel upgrade" banner
19
+sed -i "s|#\$nrconf{kernelhints} = -1;|\$nrconf{kernelhints} = -1;|g" /etc/needrestart/needrestart.conf
20
+
18
 # Baseline utils
21
 # Baseline utils
19
 echo -e "Installing baseline utils\n"
22
 echo -e "Installing baseline utils\n"
20
 apt update
23
 apt update

Loading…
Cancel
Save