NgixProxy_Pathfinder/nginx/conf.d/README.md

14 lines
230 B
Markdown

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