Files
ginxsom/Trash/fcgi-wrapper.sh
2025-09-02 12:54:22 -04:00

5 lines
174 B
Bash
Executable File

#!/bin/bash
# FastCGI wrapper script to redirect stderr to log file
exec 2>>logs/fcgi-stderr.log
echo "FastCGI wrapper starting at $(date)" >&2
exec ./build/ginxsom-fcgi "$@"