mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-04-21 13:37:48 +00:00
33 lines
746 B
Bash
Executable file
33 lines
746 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ "$(id -u)" -ne 0 ] ; then
|
|
echo "❌ Run me as root"
|
|
exit 1
|
|
fi
|
|
|
|
DNF=$(which dnf)
|
|
APT=$(which apt)
|
|
|
|
if [ -n "$DNF" ] ; then
|
|
dnf install -y haproxy
|
|
elif [ -n "$APT" ] ; then
|
|
apt install -y haproxy
|
|
fi
|
|
|
|
cp haproxy.cfg /etc/haproxy
|
|
sed -i "s/*:8080/*:80/" /etc/haproxy/haproxy.cfg
|
|
sed -i "s/bunkerweb/127.0.0.1/" /etc/haproxy/haproxy.cfg
|
|
systemctl stop bunkerweb
|
|
systemctl stop haproxy
|
|
if [ -f /lib/systemd/system/haproxy.service ] ; then
|
|
sed -i 's/^BindReadOnlyPaths/#BindReadOnlyPaths/' /lib/systemd/system/haproxy.service
|
|
systemctl daemon-reload
|
|
fi
|
|
systemctl start haproxy
|
|
# shellcheck disable=SC2181
|
|
if [ $? -ne 0 ] ; then
|
|
systemctl status haproxy
|
|
journalctl -u haproxy.service
|
|
fi
|
|
|
|
echo "hello" > /var/www/html/index.html
|