6 lines
155 B
Bash
6 lines
155 B
Bash
#!/bin/bash
|
|
mkdir -p /var/log/apache2/
|
|
ln -sf /proc/$$/fd/1 /var/log/apache2/access.log
|
|
ln -sf /proc/$$/fd/2 /var/log/apache2/error.log
|
|
apache2-foreground
|