From f6117c9750ec44ab62d6b20891592f5660878dfd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Pedro=20Toledo?= Date: Tue, 27 Jan 2026 14:32:44 -0300 Subject: [PATCH] Add conf.d directory with placeholder --- conf.d/README.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 conf.d/README.md diff --git a/conf.d/README.md b/conf.d/README.md new file mode 100644 index 0000000..9569eeb --- /dev/null +++ b/conf.d/README.md @@ -0,0 +1,13 @@ +# Site Configurations +Put your server blocks (vhosts) in this directory. +Example: `my-site.conf` + +```nginx +server { + listen 80; + server_name example.com; + location / { + proxy_pass http://internal:8080; + } +} +```