Add a PHP index file so that Heroku will auto discover and deploy nginx / html

This commit is contained in:
Kevin Lohman
2018-02-05 10:28:00 -08:00
parent abd2191c50
commit d5ced0d9a3
+5
View File
@@ -0,0 +1,5 @@
<?php
/* PHP file enables heroku auto type discovery */
header('Location: index.html');
exit;
?>