Merge pull request #17353 from hiroshisuga/patch-65
[doc] open 80 and 443 for Let's Encrypt
This commit is contained in:
commit
21d3108645
@ -131,6 +131,26 @@ $ grep -c ^processor /proc/cpuinfo
|
||||
8
|
||||
```
|
||||
|
||||
Next check that your server has the port 80 and 443 open
|
||||
|
||||
|
||||
```bash
|
||||
$ sudo ufw status
|
||||
...
|
||||
80 ALLOW Anywhere
|
||||
443 ALLOW Anywhere
|
||||
...
|
||||
80 (v6) ALLOW Anywhere
|
||||
443 (v6) ALLOW Anywhere
|
||||
...
|
||||
```
|
||||
|
||||
If you don't see these lines, you need to open them by
|
||||
```bash
|
||||
sudo ufw allow 80
|
||||
sudo ufw allow 443
|
||||
```
|
||||
|
||||
Sometimes we get asked "Why are you only supporting Ubuntu 20.04 64-bit?". The answer is based on choosing quality over quantity. Long ago we concluded that its better for the project to have solid, well-tested, well-documented installation for a specific version of Linux that works really, really well than to try and support may variants of Linux and have none of them work well.
|
||||
|
||||
At the moment, the requirement for docker may preclude running 2.6 within some virtualized environments; however, it ensures libreoffice runs within a restricted sandbox for document conversion. We are exploring if we can run libreoffice within systemd (such as systemd-nspawn).
|
||||
|
Loading…
Reference in New Issue
Block a user