diff --git a/controller/config.go b/controller/config.go
index fdfa756..77619d7 100644
--- a/controller/config.go
+++ b/controller/config.go
@@ -18,7 +18,7 @@ func GetConfig() model.Config {
}
config := model.Config{
- BaseUrl: "https://arimelody.me",
+ BaseUrl: "https://arimelody.space",
Host: "0.0.0.0",
Port: 8080,
TrustedProxies: []string{ "127.0.0.1" },
diff --git a/controller/totp.go b/controller/totp.go
index 076d3a1..3937459 100644
--- a/controller/totp.go
+++ b/controller/totp.go
@@ -58,12 +58,12 @@ func GenerateTOTPURI(username string, secret string) string {
url := url.URL{
Scheme: "otpauth",
Host: "totp",
- Path: url.QueryEscape("arimelody.me") + ":" + url.QueryEscape(username),
+ Path: url.QueryEscape("arimelody.space") + ":" + url.QueryEscape(username),
}
query := url.Query()
query.Set("secret", secret)
- query.Set("issuer", "arimelody.me")
+ query.Set("issuer", "arimelody.space")
// query.Set("algorithm", "SHA1")
// query.Set("digits", fmt.Sprintf("%d", TOTP_CODE_LENGTH))
// query.Set("period", fmt.Sprintf("%d", TOTP_TIME_STEP))
diff --git a/docker-compose.example.yml b/docker-compose.example.yml
index 7833201..62843b9 100644
--- a/docker-compose.example.yml
+++ b/docker-compose.example.yml
@@ -1,6 +1,6 @@
services:
web:
- image: docker.arimelody.me/arimelody.me:latest
+ image: docker.arimelody.space/arimelody.me:latest
build: .
ports:
- 8080:8080
diff --git a/main.go b/main.go
index 5dd3625..bdb55d3 100644
--- a/main.go
+++ b/main.go
@@ -565,7 +565,7 @@ var PoweredByStrings = []string{
func DefaultHeaders(next http.Handler) http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
- w.Header().Add("Server", "arimelody.me")
+ w.Header().Add("Server", "ari melody webbed site")
w.Header().Add("Do-Not-Stab", "1")
w.Header().Add("X-Clacks-Overhead", "GNU Terry Pratchett")
w.Header().Add("X-Hacker", "spare me please")
diff --git a/public/img/buttons/girlonthemoon.png b/public/img/buttons/girlonthemoon.png
new file mode 100644
index 0000000..4e98a12
Binary files /dev/null and b/public/img/buttons/girlonthemoon.png differ
diff --git a/public/img/prideflag.svg b/public/img/prideflag.svg
index 86654df..343a54f 100644
--- a/public/img/prideflag.svg
+++ b/public/img/prideflag.svg
@@ -1,32 +1,32 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/public/script/config.js b/public/script/config.js
index 402a74b..bfa4d03 100644
--- a/public/script/config.js
+++ b/public/script/config.js
@@ -1,4 +1,4 @@
-const ARIMELODY_CONFIG_NAME = "arimelody.me-config";
+const ARIMELODY_CONFIG_NAME = "arimelody-web-config";
class Config {
_crt = false;
diff --git a/public/script/prideflag.js b/public/script/prideflag.js
index 03aecf9..1b6d19a 100644
--- a/public/script/prideflag.js
+++ b/public/script/prideflag.js
@@ -8,11 +8,11 @@
// please use this flag to link to an LGBTQI+-supporting page
// of your choosing!
//
-// web: https://arimelody.me
-// source: https://git.arimelody.me/ari/prideflag
+// web: https://arimelody.space
+// source: https://forge.arimelody.space/ari/prideflag
//
-const pride_url = "https://git.arimelody.me/ari/prideflag";
+const pride_url = "https://forge.arimelody.space/ari/prideflag";
const pride_flag_svg =
`
diff --git a/view/footer.html b/view/footer.html
index eccf125..6d35ef5 100644
--- a/view/footer.html
+++ b/view/footer.html
@@ -5,7 +5,7 @@
*made with ♥ by ari, 2025*
- source
+ source
diff --git a/view/index.html b/view/index.html
index 0e09475..23f40ea 100644
--- a/view/index.html
+++ b/view/index.html
@@ -14,8 +14,7 @@