12 lines
193 B
Bash
Executable File
12 lines
193 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo 'Running with config: '
|
|
cat /etc/nginx/nginx.conf
|
|
|
|
echo 'Default config:'
|
|
cat /etc/nginx/conf.d/default.conf
|
|
|
|
echo 'Custom config:'
|
|
cat /tmp/custom.conf
|
|
#nginx -g 'daemon off;'
|