* docs: rework files structure * rewrite documentation entrypoint * update category files and use yml * add manuals entry page * update admin-manual titles and page order * create releases sections * move ssl configuration to reverse proxy * docs: update website vars and links * update release note codeblock syntax key * resurect troubleshooting guide * Update freeipa custom auth documentation * add notice about the state of the documentation * update the backup documentation * tmp: allow to deploy the website for preview * Don't use require.resolve for plugins * Update the main page link dest * update development environment title * rewrite the install/upgrade/migrate as guides * update website docs sections links * Fix urls * move release note to documentation * move home links to vars files * tmp: update deploy url * add react to tsconfig to handle jsx linting * fix: replace absolute url to relative path to files * tmp: allow CI Website dpeloy on working branch * Update release note title * use default syntax highlighting theme * update the troubleshooting guide * Wording * use CodeBlock components * Better prose * remove api_client config section * fix prose errors * update import prefix for vars file * reroder docs manuals links * use sentence capitalization for page titles * Wording * missing word * Update note about syslog log file * wording
28 lines
580 B
Markdown
28 lines
580 B
Markdown
---
|
|
title: How to setup a firewall using UFW
|
|
---
|
|
|
|
This tutorials will walk you though the steps required to setup a firewall using [UFW](https://doc.ubuntu-fr.org/ufw).
|
|
|
|
## 1. Install and enable `UFW`
|
|
|
|
First you need to make sure UFW is installed and enabled:
|
|
|
|
```bash
|
|
sudo apt install ufw
|
|
sudo ufw enable
|
|
```
|
|
|
|
## 2. Configure allowed ports
|
|
|
|
Next, you need to configure the firewall allowed ports:
|
|
|
|
```bash
|
|
sudo ufw allow 22,80,8000/tcp
|
|
```
|
|
|
|
If you plan to use the live stream input endpoint, be sure to open the `8001` and `8002` ports:
|
|
|
|
```bash
|
|
sudo ufw allow 8001,8002/tcp
|
|
```
|