Files
3dp-manager/app/nginx.example.conf
T
2025-12-20 22:15:57 +03:00

16 lines
233 B
Plaintext

events {}
http {
server {
listen $NGINX_PORT;
server_name $UI_HOST;
location = /bus/$SUB_TOKEN {
alias /subscriptions/list.txt;
default_type text/plain;
}
location / {
return 404;
}
}
}