Add conf.d directory with placeholder

This commit is contained in:
João Pedro Toledo Goncalves 2026-01-27 14:32:44 -03:00
parent f9c84c033c
commit f6117c9750
1 changed files with 13 additions and 0 deletions

13
conf.d/README.md Normal file
View File

@ -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;
}
}
```