7 lines
170 B
Bash
Executable File
7 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
|
|
sed -i 's/access_log \/dev\/stdout main;/access_log \/dev\/null main;/g' /usr/local/nginx/conf/nginx.conf
|
|
|
|
# Delegate to original entrypoint
|
|
exec /init "$@"
|