Where are sites hosted?

Ok, so i have html on my glitch app. Where does glitch host it? If glitch doesn’t host it then how do i host it myself?

Glitch hosts and deploys your app automatically. If you click ‘show’ in the editor then you’ll see your hosted app.

Ok, so i tried that and made an html document and it showed me the site. However, now whenever i modify it the changes don’t update?

That shouldn’t be the case - let us know the project name and we’ll take a look. If your project is private, either make it public temporarily or DM me a join link so we can view the code. Thanks.

1 Like

Ok dm me first because i have no clue how to dm on here lol.

Your index.js file was set to return a 200 Server response, which is the ‘OK’ you were seeing when you clicked ‘Show’. You appear to want to output the content in website/index.html instead, so I’ve updated index.js to serve up that file. Now if you make changes to website/index.html you’ll see the changes straight away.