From 5848cd248e5eb10fe587abe472f1b0a263f15f25 Mon Sep 17 00:00:00 2001
From: Milo Schwartz <mschwartz10612@gmail.com>
Date: Sun, 5 Jan 2025 23:53:12 -0500
Subject: [PATCH] fix headers in manual install

---
 .../docs/02-Getting Started/02-manual-install.md     | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/packages/docusaurus/docs/02-Getting Started/02-manual-install.md b/packages/docusaurus/docs/02-Getting Started/02-manual-install.md
index 92dd89a..856e69e 100644
--- a/packages/docusaurus/docs/02-Getting Started/02-manual-install.md	
+++ b/packages/docusaurus/docs/02-Getting Started/02-manual-install.md	
@@ -8,7 +8,7 @@ This guide assumes you already have a Linux server with Docker and Docker compos
 
 This guide will walk you through setting up the Docker Compose stack manually without using the installer CLI tool.
 
-# Prerequisites
+## Prerequisites
 
 - A Linux system with root access and a public IP address
   - We recommend Ubuntu or Debian based systems
@@ -37,7 +37,7 @@ Anything marked with `(generated)` is created on startup. The rest of the files
 └── docker-compose.yml
 ```
 
-# Purpose of Each File
+## Purpose of Each File
 
 - `config/config.yml`: The main configuration file for Pangolin. See the [Configuration](https://docs.fossorial.io/Pangolin/Configuration/config) section for more details.
 - `config/db/db.sqlite`: The SQLite database file for Pangolin. It will be created on startup.
@@ -50,7 +50,7 @@ Anything marked with `(generated)` is created on startup. The rest of the files
 
 _For any Traefik configuration changes beyond what is needed in this tutorial, please refer to the [Traefik documentation](https://doc.traefik.io/traefik/)._
 
-# Docker Compose File
+## Docker Compose File
 
 ```yaml
 services:
@@ -106,7 +106,7 @@ services:
       - ./config/letsencrypt:/letsencrypt # Volume to store the Let's Encrypt certificates
 ```
 
-# Traefik Configuration
+## Traefik Configuration
 
 `config/traefik/traefik_config.yml`
 
@@ -217,7 +217,7 @@ http:
           - url: "http://pangolin:3000" # API/WebSocket server
 ```
 
-# Pangolin Configuration
+## Pangolin Configuration
 
 `config/config.yml`
 
@@ -274,7 +274,7 @@ flags:
   disable_user_create_org: true
 ```
 
-# Starting the Stack
+## Starting the Stack
 
 After creating the necessary files and directories, you can start the stack with the following command: