mirror of
https://github.com/lancachenet/monolithic
synced 2025-02-16 21:08:26 +00:00
This commit rebases the generic code into the monolithic image This allows the base image to be the more regularly accessed / edited image Commits to lancachenet/generic:switcheroo will mimic this commit Also fixes lancachenet/generic#108
9 lines
195 B
Bash
9 lines
195 B
Bash
#!/bin/sh
|
|
set -e
|
|
echo "Currently configured config:"
|
|
/scripts/getconfig.sh /etc/nginx/nginx.conf
|
|
|
|
echo "Checking nginx config"
|
|
/usr/sbin/nginx -t
|
|
|
|
[ $? -ne 0 ] || echo "Config check successful"
|