1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2023-10-10 13:37:24 +02:00

Initial commit

This commit is contained in:
billz 2019-11-10 22:09:36 +00:00
parent 7e6a8f35af
commit d3e0aca3d7

16
installers/configport.sh Executable file
View File

@ -0,0 +1,16 @@
#!/bin/bash
# Updates lighttpd server.port and restarts the service in a predictable manner
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
server_port=$1
lighttpd_conf=$2
host=$3
echo "Changing lighttpd server.port to $server_port..."
sed -i "s/^\(server\.port *= *\)[0-9]*/\1$server_port/g" "$lighttpd_conf"
echo "RaspAP will now be available at $host:$server_port"
echo "Restarting lighttpd in 5 seconds..."
sleep 5
systemctl restart lighttpd.service