Files
supportware/startserver_proxy.sh
2025-08-05 22:42:07 +02:00

17 lines
195 B
Bash

#!/bin/sh
# create resources
ulimit -c unlimited
ulimit -n 2048
# kill old stuff
kill -9 `pidof server`
kill -9 `pidof -x restarter_proxy.sh`
# run restarter
nohup ./restarter_proxy.sh &