mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 14:45:42 +03:00
6 lines
132 B
Bash
6 lines
132 B
Bash
|
#!/bin/bash
|
||
|
chown www-data:www-data /var/www -R
|
||
|
source /etc/apache2/envvars
|
||
|
tail -F /var/log/apache2/* &
|
||
|
exec apache2 -D FOREGROUND
|