portal/setup/broadcaster/nginx.conf
2025-06-29 12:49:02 -04:00

9 lines
No EOL
160 B
Nginx Configuration File

server {
listen 80;
server_name blackportaldetroit.com;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_buffering off;
}
}