view backup/start.sh @ 2156:d2e2bb4ad044 nginx_sites_addon

move error_log directive from nginx.default.conf.luan to nginx.conf.luan
author Violet7
date Tue, 27 Jan 2026 19:44:35 -0800
parents 14a690642b88
children
line wrap: on
line source

#!/bin/bash -e

ROOTPWD=$(pwd);
logsdir=${ROOTPWD}"/logs";
servelog=${logsdir}"/server.log";

if [ "$1" == "launchd" ]; then
    ${ROOTPWD}/luan.sh backup_server.luan $* &>${servelog}
else
    ${ROOTPWD}/luan.sh backup_server.luan $* &>${servelog}&
fi;