CustomLog "logs/access_log" common
where access_log file is link to /dev/stdout:
lrwxrwxrwx 1 root www-data 11 Nov 26 12:13 access_log -> /dev/stdout
2) or CustomLog as:
CustomLog /proc/self/fd/1 common
considering that /dev/stdout is another link:
lrwxrwxrwx 1 root root 15 Nov 25 15:14 stdout -> /proc/self/fd/1
And the strange thing is that both attempts with a pure apache container are working and I'm able to see the logs in Stackdriver
Instead same configurations in my custom apache and I'm not able to see anything in Stackdriver.
Please, any ideas?