, 1 min read
Hosting Static Content with surge.sh
Original post is here eklausmeier.goip.de/blog/2020/05-25-hosting-static-content-with-surge-sh.
When you want totally hassle free hosting of static HTML then surge.sh is very attractive. It is easy to set-up and free of charge for most private users. It offers https out of the box from sectigo.com. It does not offer PHP, MySQL/MariaDB, CGI, Perl, etc. Just static HTML with CSS, JavaScript, images, etc. Your static content will be hosted on Your_Domain.surge.sh
.
Steps to follow:
- Install surge:
npm install surge
cd
to your directory with static content: Typesurge
It cannot be easier. If you do not want to enter the domain name over and over again, you can store this chosen domain name in file CNAME
and you won't be asked the next time:
echo Your_Domain > CNAME
The surge command offers the following options.
$ surge --help
surge – single command web publishing. (v0.21.3)
Usage:
surge <project> <domain>
Options:
-a, --add adds user to list of collaborators (email address)
-r, --remove removes user from list of collaborators (email address)
-V, --version show the version number
-h, --help show this help message
Additional commands:
surge whoami show who you are logged in as
surge logout expire local token
surge login only performs authentication step
surge list list all domains you have access to
surge teardown tear down a published project
surge plan set account plan
Guides:
Getting started surge.sh/help/getting-started-with-surge
Custom domains surge.sh/help/adding-a-custom-domain
Additional help surge.sh/help
When in doubt, run surge from within your project directory.
Your e-mail and encrypted password are stored in $HOME/.netrc
.
The script surge
will not honor symbolic links in your deployment directory. For example, an image directory will not get copied over to surge.sh.
My static site on surge.sh is here: eklausmeier.surge.sh.