view backup/macos/addStartupScripts.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 45eaaf5146f3
children
line wrap: on
line source

#!/bin/bash

. startupScripts.sh;

mkdir -p $localStartup 2>/dev/null;

cd $startup;
for file in *.plist; do
    log=${ROOTPWD}"/logs/startup.${file}.log";
	sed "s~PWD~${startup}~g;\
	     s~LOG~${log}~g;\
	     s~USER~${user}~g;\
	     s~ROOT~${ROOTPWD}~g" $file > ${localStartup}/${file};
done;

addStartup;

cd $ROOTPWD;