Skip to content

Commit c4c5284

Browse files
committed
change kutt.it mentions to kutt.to
1 parent 44e964d commit c4c5284

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

.example.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ CUSTOM_DOMAIN_USE_HTTPS=false
7272

7373
# Optional - Email is used to verify or change email address, reset password, and send reports.
7474
# If it's disabled, all the above functionality would be disabled as well.
75-
# MAIL_FROM example: "Kutt <support@kutt.it>". Leave it empty to use MAIL_USER.
75+
# MAIL_FROM example: "Kutt <support@kutt.to>". Leave it empty to use MAIL_USER.
7676
# More info on the configuration on http://nodemailer.com/.
7777
MAIL_ENABLED=false
7878
MAIL_HOST=

docs/api/api.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ const p = require("../../package.json");
44
module.exports = {
55
openapi: "3.0.0",
66
info: {
7-
title: "Kutt.it",
8-
description: "API reference for [http://kutt.it](http://kutt.it).\n",
7+
title: "Kutt.to",
8+
description: "API reference for [http://kutt.to](http://kutt.to).\n",
99
version: p.version
1010
},
1111
servers: [
1212
{
13-
url: "https://kutt.it/api/v2"
13+
url: "https://kutt.to/api/v2"
1414
}
1515
],
1616
tags: [

server/env.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ if (process.argv.includes("--production")) {
2929
const spec = {
3030
PORT: num({ default: 3000 }),
3131
SITE_NAME: str({ example: "Kutt", default: "Kutt" }),
32-
DEFAULT_DOMAIN: str({ example: "kutt.it", default: "localhost:3000" }),
32+
DEFAULT_DOMAIN: str({ example: "kutt.to", default: "localhost:3000" }),
3333
LINK_LENGTH: num({ default: 6 }),
3434
LINK_CUSTOM_ALPHABET: str({ default: "abcdefghkmnpqrstuvwxyzABCDEFGHKLMNPQRSTUVWXYZ23456789" }),
3535
TRUST_PROXY: bool({ default: true }),
@@ -60,7 +60,7 @@ const spec = {
6060
MAIL_PORT: num({ default: 587 }),
6161
MAIL_SECURE: bool({ default: false }),
6262
MAIL_USER: str({ default: "" }),
63-
MAIL_FROM: str({ default: "", example: "Kutt <support@kutt.it>" }),
63+
MAIL_FROM: str({ default: "", example: "Kutt <support@kutt.to>" }),
6464
MAIL_PASSWORD: str({ default: "" }),
6565
OIDC_ENABLED: bool({ default: false }),
6666
OIDC_ISSUER: str({ default: "" }),

server/views/partials/settings/apikey.hbs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
In additional to this website, you can use the API to create, delete and
55
get shortened URLs. If you're not familiar with API, don't generate the key.
66
DO NOT share this key on the client side of your website.
7-
<a href="https://docs.kutt.it" title="API Docs" target="_blank">
7+
<a href="https://docs.kutt.to" title="API Docs" target="_blank">
88
Read API docs.
99
</a>
1010
</p>

static/manifest.webmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"theme_color": "#f3f3f3",
55
"background_color": "#f3f3f3",
66
"display": "standalone",
7-
"description": "Kutt.it is a free and open source URL shortener with custom domains and stats.",
7+
"description": "Kutt.to is a free and open source URL shortener with custom domains and stats.",
88
"Scope": "/",
99
"start_url": "/",
1010
"icons": [

0 commit comments

Comments
 (0)