Compare commits

..

2 commits

Author SHA1 Message Date
Gabriel Simmer d599f024fc
gmem.ca source
All checks were successful
Lint / lint (push) Successful in 8s
2023-07-25 20:26:51 +01:00
Gabriel Simmer b6a2336906
next records for gabrielsimmercom 2023-07-25 20:26:30 +01:00
4 changed files with 107 additions and 0 deletions

View file

@ -0,0 +1,21 @@
{
"sonas": [
{
"name": "Arch",
"pronouns": "He/Him",
"gender": "Male",
"species": "Golden Retriever",
"description": "Lover of headpats, deep into software development, cloud hosting and sysadmin.",
"ref": "https://gmem.ca/refsheet.png",
"avatar": "https://gmem.ca/avatar.png",
"age": 23,
"birthdate": "1999-08-07T00:00:00+00:00",
"colors": [
"#0EA5F0",
"#D3986E",
"#936943",
"#242139"
]
}
]
}

View file

@ -0,0 +1,47 @@
[
{
"subject": "acct:arch@gmem.ca",
"aliases": [
"https://floofy.tech/@arch",
"https://floofy.tech/users/arch"
],
"links": [
{
"rel": "http://openid.net/specs/connect/1.0/issuer",
"href": "https://lemur-4.cloud-iam.com/auth/realms/archdog"
},
{
"rel": "http://webfinger.net/rel/avatar",
"href": "https://gmem.ca/avatar.png"
},
{
"rel": "http://webfinger.net/rel/profile-page",
"type": "text/html",
"href": "https://gmem.ca"
},
{
"rel": "self",
"type": "application/activity+json",
"href": "https://floofy.tech/users/arch"
},
{
"rel": "http://ostatus.org/schema/1.0/subscribe",
"template": "https://floofy.tech/authorize_interaction?uri={uri}"
}
]
},
{
"subject": "acct:becki@gmem.ca",
"links": [
{
"rel": "http://openid.net/specs/connect/1.0/issuer",
"href": "https://lemur-4.cloud-iam.com/auth/realms/archdog"
},
{
"rel": "http://webfinger.net/rel/profile-page",
"type": "text/html",
"href": "https://artbybecki.com"
}
]
}
]

13
gmem.ca/index.html Normal file
View file

@ -0,0 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>gmem.ca</title>
</head>
<body>
<h1>arf arf</h1>
<p><i>*wags tail*</i> awoo woof woof <a href="https://floofy.tech/@arch" rel="me">bark</a></p>
<p><a href="https://fursona.gmem.ca/gmem.ca">yip arf</a></p>
<p><a href="/.well-known/webfinger?resource=acct:arch@gmem.ca">woof</a></p>
</body>
</html>

View file

@ -30,6 +30,32 @@ resource "aws_route53_record" "gabrielsimmercom-a" {
]
}
resource "aws_route53_record" "gabrielsimmercom-google-ownership" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "gabrielsimmer.com"
type = "TXT"
ttl = 300
records = [
"google-site-verification=EW1TJ2_9BRa81mIRX9doz-5aR4ydYh4hzG1yuqfu_C4",
]
}
resource "aws_route53_record" "gabrielsimmercom-next" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "next"
type = "A"
ttl = 300
records = [ "66.241.124.117" ]
}
resource "aws_route53_record" "gabrielsimmercom-next-aaa" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "next"
type = "AAAA"
ttl = 300
records = [ "2a09:8280:1::4e:42fd" ]
}
resource "aws_route53_record" "gabrielsimmercom-www" {
zone_id = aws_route53_zone.gabrielsimmercom.zone_id
name = "www"