9 lines
151 B
Plaintext
9 lines
151 B
Plaintext
|
#!/bin/bash
|
||
|
# Run this script to start Apache and MySQL
|
||
|
#
|
||
|
# Start MySQL
|
||
|
mysqld &
|
||
|
# Start Apache
|
||
|
source /etc/apache2/envvars
|
||
|
exec apache2 -D FOREGROUND
|