diff --git a/apache2/Dockerfile b/apache2/Dockerfile
index 97636ed9..e2b4ce41 100644
--- a/apache2/Dockerfile
+++ b/apache2/Dockerfile
@@ -12,6 +12,8 @@ EXPOSE 80 443
WORKDIR /var/www/
+ADD vhost.conf /etc/apache2/sites-enabled/vhost.conf
+
ENTRYPOINT ["/opt/docker/bin/entrypoint.sh"]
CMD ["supervisord"]
diff --git a/apache2/sites/.gitignore b/apache2/sites/.gitignore
new file mode 100644
index 00000000..f1f9322e
--- /dev/null
+++ b/apache2/sites/.gitignore
@@ -0,0 +1,3 @@
+*.conf
+!default.conf
+!default.apache.conf
diff --git a/apache2/sites/default.apache.conf b/apache2/sites/default.apache.conf
new file mode 100644
index 00000000..2d15dafc
--- /dev/null
+++ b/apache2/sites/default.apache.conf
@@ -0,0 +1,16 @@
+
+ ServerName laradock.dev
+ DocumentRoot /var/www/html/
+ Options Indexes FollowSymLinks
+
+
+ AllowOverride All
+
+ Allow from all
+
+ = 2.4>
+ Require all granted
+
+
+
+
diff --git a/apache2/sites/sample.conf.example b/apache2/sites/sample.conf.example
new file mode 100644
index 00000000..48a132e0
--- /dev/null
+++ b/apache2/sites/sample.conf.example
@@ -0,0 +1,16 @@
+
+ ServerName sample.dev
+ DocumentRoot /var/www/sample/public/
+ Options Indexes FollowSymLinks
+
+
+ AllowOverride All
+
+ Allow from all
+
+ = 2.4>
+ Require all granted
+
+
+
+
diff --git a/apache2/vhost.conf b/apache2/vhost.conf
new file mode 100644
index 00000000..2352bf82
--- /dev/null
+++ b/apache2/vhost.conf
@@ -0,0 +1 @@
+Include /etc/apache2/sites-available/*.conf
diff --git a/docker-compose.yml b/docker-compose.yml
index 3b4a5ca1..03293e33 100644
--- a/docker-compose.yml
+++ b/docker-compose.yml
@@ -102,6 +102,9 @@ services:
- applications
volumes:
- ${APACHE_HOST_LOG_PATH}:/var/log/apache2
+ - ./apache2/sites:/etc/apache2/sites-available
+
+
ports:
- "${APACHE_HOST_HTTP_PORT}:80"
- "${APACHE_HOST_HTTPS_PORT}:443"