We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 44e964d commit c4c5284Copy full SHA for c4c5284
5 files changed
.example.env
@@ -72,7 +72,7 @@ CUSTOM_DOMAIN_USE_HTTPS=false
72
73
# Optional - Email is used to verify or change email address, reset password, and send reports.
74
# 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.
+# MAIL_FROM example: "Kutt <support@kutt.to>". Leave it empty to use MAIL_USER.
76
# More info on the configuration on http://nodemailer.com/.
77
MAIL_ENABLED=false
78
MAIL_HOST=
docs/api/api.js
@@ -4,13 +4,13 @@ const p = require("../../package.json");
4
module.exports = {
5
openapi: "3.0.0",
6
info: {
7
- title: "Kutt.it",
8
- description: "API reference for [http://kutt.it](http://kutt.it).\n",
+ title: "Kutt.to",
+ description: "API reference for [http://kutt.to](http://kutt.to).\n",
9
version: p.version
10
},
11
servers: [
12
{
13
- url: "https://kutt.it/api/v2"
+ url: "https://kutt.to/api/v2"
14
}
15
],
16
tags: [
server/env.js
@@ -29,7 +29,7 @@ if (process.argv.includes("--production")) {
29
const spec = {
30
PORT: num({ default: 3000 }),
31
SITE_NAME: str({ example: "Kutt", default: "Kutt" }),
32
- DEFAULT_DOMAIN: str({ example: "kutt.it", default: "localhost:3000" }),
+ DEFAULT_DOMAIN: str({ example: "kutt.to", default: "localhost:3000" }),
33
LINK_LENGTH: num({ default: 6 }),
34
LINK_CUSTOM_ALPHABET: str({ default: "abcdefghkmnpqrstuvwxyzABCDEFGHKLMNPQRSTUVWXYZ23456789" }),
35
TRUST_PROXY: bool({ default: true }),
@@ -60,7 +60,7 @@ const spec = {
60
MAIL_PORT: num({ default: 587 }),
61
MAIL_SECURE: bool({ default: false }),
62
MAIL_USER: str({ default: "" }),
63
- MAIL_FROM: str({ default: "", example: "Kutt <support@kutt.it>" }),
+ MAIL_FROM: str({ default: "", example: "Kutt <support@kutt.to>" }),
64
MAIL_PASSWORD: str({ default: "" }),
65
OIDC_ENABLED: bool({ default: false }),
66
OIDC_ISSUER: str({ default: "" }),
server/views/partials/settings/apikey.hbs
@@ -4,7 +4,7 @@
In additional to this website, you can use the API to create, delete and
get shortened URLs. If you're not familiar with API, don't generate the key.
DO NOT share this key on the client side of your website.
- <a href="https://docs.kutt.it" title="API Docs" target="_blank">
+ <a href="https://docs.kutt.to" title="API Docs" target="_blank">
Read API docs.
</a>
</p>
static/manifest.webmanifest
"theme_color": "#f3f3f3",
"background_color": "#f3f3f3",
"display": "standalone",
- "description": "Kutt.it is a free and open source URL shortener with custom domains and stats.",
+ "description": "Kutt.to is a free and open source URL shortener with custom domains and stats.",
"Scope": "/",
"start_url": "/",
"icons": [
0 commit comments