Use yaml front matter instead of toml

This commit is contained in:
2021-10-14 16:17:07 -05:00
parent c7b482ba4b
commit 57047c6615
14 changed files with 164 additions and 156 deletions

View File

@@ -1,17 +1,17 @@
+++
title = "Allow Non Root Processes to Bind to Privileged Ports"
date = "2021-03-28"
toc = true
---
aliases = [
"posts/allow-non-root-processes-to-bind-to-privileged-ports/",
]
title: Allow Non Root Processes to Bind to Privileged Ports
date: "2021-03-28"
toc: true
tags = [
"guide",
"linux",
]
+++
aliases:
- posts/allow-non-root-processes-to-bind-to-privileged-ports/
tags:
- guide
- linux
---
In Linux, processes cannot bind to privileged ports (<=1024) unless they are
running as root. Here's how to allow any process to bind to privileged ports.