No edit summary |
No edit summary |
||
Line 19: | Line 19: | ||
You're done! | You're done! | ||
Access your new website using this | Access your new website using this URL format: | ||
<nowiki>https://USERNAME.tildepages.org</nowiki>[/REPOSITORY][/@BRANCH] | <nowiki>https://USERNAME.tildepages.org</nowiki>[/REPOSITORY][/@BRANCH] | ||
==== Custom Domains ==== | |||
To use a custom domain, create a file .domains in your repository with the domain name to use. | To use a custom domain, create a file .domains in your repository with the domain name to use. | ||
Then, add a DNS record to that domains: | Then, add a DNS record to that domains: | ||
<nowiki>CNAME [[branch.]repo.]user.tildepages.org</nowiki> | <nowiki>CNAME [[branch.]repo.]user.tildepages.org</nowiki> | ||
Or for zone roots where CNAME doesn't work: | Or for zone roots where CNAME doesn't work: | ||
ALIAS tildepages.org | ALIAS tildepages.org | ||
<nowiki>TXT [[branch.]repo.]user.tildepages.org</nowiki> | <nowiki>TXT [[branch.]repo.]user.tildepages.org</nowiki> | ||
If ALIAS isn't supported, use A & AAAA instead: | If ALIAS isn't supported, use A & AAAA instead: | ||
A 157.90.196.54 | A 157.90.196.54 | ||
AAAA 2a01:4f8:252:3e22::54 | AAAA 2a01:4f8:252:3e22::54 | ||
+ TXT as above | + TXT as above | ||
[[Category:Services]] | [[Category:Services]] |
Revision as of 21:54, 7 July 2022
Host static websites with tildegit pages!
It's quick, easy, free & fast - just put your open source project's homepage, developer blog or web experiment into a Git repository at tildegit, and we'll do the rest.
Set up your repository
Create a public repository named pages
to make the site available at the main subdomain.
or
Create a branch pages in a repository:
git checkout --orphan pages git rm --cached -r .
Upload your files
Push your static content, HTML, style, fonts, images or anything else.
You're done!
Access your new website using this URL format:
https://USERNAME.tildepages.org[/REPOSITORY][/@BRANCH]
Custom Domains
To use a custom domain, create a file .domains in your repository with the domain name to use.
Then, add a DNS record to that domains:
CNAME [[branch.]repo.]user.tildepages.org
Or for zone roots where CNAME doesn't work:
ALIAS tildepages.org
TXT [[branch.]repo.]user.tildepages.org
If ALIAS isn't supported, use A & AAAA instead:
A 157.90.196.54
AAAA 2a01:4f8:252:3e22::54
+ TXT as above