diff --git a/container_apache.conf b/container_apache.conf
new file mode 100644
index 0000000..a71cbb3
--- /dev/null
+++ b/container_apache.conf
@@ -0,0 +1,21 @@
+
+ ServerName {{DOMAIN}}
+ Redirect permanent / https://{{DOMAIN}}/
+
+
+
+ ServerName {{DOMAIN}}
+
+ DocumentRoot /var/www/html
+
+ AllowOverride All
+ Require all granted
+
+
+ SSLEngine on
+ SSLCertificateFile /etc/ssl/certs/{{DOMAIN}}.crt
+ SSLCertificateKeyFile /etc/ssl/private/{{DOMAIN}}.key
+
+ ErrorLog ${APACHE_LOG_DIR}/error.log
+ CustomLog ${APACHE_LOG_DIR}/access.log combined
+