diff --git a/example/http-vhost/https.cnf b/example/http-vhost/https.cnf
new file mode 100644
index 0000000..d655be4
--- /dev/null
+++ b/example/http-vhost/https.cnf
@@ -0,0 +1,31 @@
+# With SSL
+# Example for pphatdev.local
+
+ # Redirect to HTTPS
+ Redirect permanent / https://pphatdev.local/
+
+
+
+# With SSL
+
+
+ # Server Name
+ ServerName pphatdev.local
+ # Server Alias
+ ServerAlias pphatdev.local
+
+ # Document Root Path
+ DocumentRoot "D:/Project/laravel/blog-post/public"
+
+ # SSL Options
+ SSLEngine on
+ SSLCertificateFile "C:/xampp/apache/conf/ssl.crt/pphatdev.local.crt"
+ SSLCertificateKeyFile "C:/xampp/apache/conf/ssl.key/pphatdev.local.key"
+
+ # Directory Permission
+
+ Options Indexes FollowSymLinks MultiViews
+ AllowOverride All
+ Require all granted
+
+