Update app.sh

Use external web interface files
This commit is contained in:
2026-08-06 05:44:07 +00:00
parent f56b597751
commit 7291b3b268
+1 -12
View File
@@ -2,24 +2,13 @@
echo "Munin-bitcoin starting..."
mkdir -p /tmp/munin-web
cat > /tmp/munin-web/index.html <<EOF
<html>
<body>
<h1>Munin-bitcoin</h1>
<p>Service is running.</p>
</body>
</html>
EOF
cat > /tmp/nginx.conf <<EOF
events {}
http {
server {
listen 80;
root /tmp/munin-web;
root /app/web;
location / {
index index.html;