From 7ec4fd828103c2e4193c2f7c52ca13e9f54ae654 Mon Sep 17 00:00:00 2001 From: LD-Reborn Date: Wed, 19 Nov 2025 23:33:37 +0100 Subject: [PATCH] Fixed missing nginx configuration in Administration.md --- docs/Administration.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/docs/Administration.md b/docs/Administration.md index 1e756dc..7264dd2 100644 --- a/docs/Administration.md +++ b/docs/Administration.md @@ -19,7 +19,10 @@ - Install DotNet Core 10.0 runtime via package manager: `sudo apt install dotnet10 dotnet-runtime-10.0` - Set up nginx to point to the application: - `sudo apt install nginx` - - Configure nginx: [example_nginx.conf](Resources/example_nginx.conf) + - Configure nginx: + - Create and edit the config file: `sudo nano /etc/nginx/sites-available/HAM.conf` + - Insert the content and configure: [example_nginx.conf](Resources/example_nginx.conf) + - create a symbolic link to sites-enabled: `cd ../sites-enabled && ln -s ../sites-available/HAM.conf HAM.conf` - Restart nginx: `sudo systemctl restart nginx` - If you don't already have an SSL certificate: - Install certbot: `sudo apt install certbot -y`