Redirect to Home Assistant using Apache
Background
This video tutorial provides steps on how to set up your Home Assistant server to redirect to the appropriate port number so that you don't have to manually enter it when connecting to the server.
Video
Code Used
Code that is used to create the webpage in the video is below.
<html>
<head>
<title>Redirecting...</title>
<meta http-equiv="refresh" content="0;URL='http://homeautomation:8123'" />
</head>
<body>
<p>Redirecting to <a href="http://homeautomation:8123">http://homeautomation:8123</a></p>
</body>
</html>
Last update: 2018-05-08