Files
munin-bitcoin/app.sh
T
Unheard0840 7291b3b268 Update app.sh
Use external web interface files
2026-08-06 05:44:07 +00:00

28 lines
368 B
Bash

#!/bin/sh
echo "Munin-bitcoin starting..."
cat > /tmp/nginx.conf <<EOF
events {}
http {
server {
listen 80;
root /app/web;
location / {
index index.html;
}
}
}
EOF
echo "Starting web interface..."
nginx -g "daemon off;" -c /tmp/nginx.conf &
while true
do
echo "Munin-bitcoin is running"
sleep 300
done