diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index 8662a8d353..7b056b4755 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -158,7 +158,7 @@ repository to allow you to checkout pull requests in the same way as branches:
### Documentation
-Ghost's main documentation can be found at [docs.ghost.org](http://docs.ghost.org).
+Ghost's documentation can be found at [support.ghost.org](http://support.ghost.org).
The documentation is generated using jekyll, all of the docs are on the gh-pages branch on the GitHub repository.
You can clone the repo, checkout the gh-pages branch, and submit pull requests following
@@ -228,7 +228,7 @@ or more of the following:
- **[master](https://github.com/TryGhost/Ghost)** is the bleeding edge development branch. All work on the next
release is here. Do **NOT** use this branch for a production site.
- **[stable](https://github.com/TryGhost/Ghost/tree/stable)** contains the latest release of Ghost. This branch may be used in production.
-- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) documentation for Getting Started with Ghost.
+- **[gh-pages](http://github.com/TryGhost/Ghost/tree/gh-pages)** contains [The Ghost Guide](http://docs.ghost.org) our developer documentation.
## Grunt Toolkit
diff --git a/README.md b/README.md
index 9919182a9d..ce6eb7b773 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@
Ghost is a free, open, simple blogging platform that's available to anyone who wants to use it. Lovingly created and maintained by [John O'Nolan](http://twitter.com/JohnONolan) + [Hannah Wolfe](http://twitter.com/ErisDS) + an amazing group of [contributors](https://github.com/TryGhost/Ghost/contributors).
-Visit the project's website at • docs on .
+Visit the project's website at • docs on .
## Getting Involved
@@ -18,7 +18,7 @@ There are **two** main ways to get started with Ghost, take care to use the meth
If you just want to get a Ghost blog running in the fastest time possible, this method is for you.
-For detailed instructions for various platforms visit the [Ghost Installation Guide](http://docs.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).
+For detailed instructions for various platforms visit the [Ghost Installation Guide](http://support.ghost.org/installation/). If you get stuck, help is available on [our support site](http://support.ghost.org/).
1. Install [Node.js](http://nodejs.org) - Ghost requires **Node v0.10.x**
1. Download the latest Ghost package from [Ghost.org](http://ghost.org/download).
@@ -29,7 +29,7 @@ For detailed instructions for various platforms visit the [Ghost Installation Gu
1. To start ghost, run `npm start`
1. Visit `http://localhost:2368/` in your web browser or go to `http://localhost:2368/ghost` to log in
-Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
+Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
@@ -50,13 +50,13 @@ Please do **NOT** use the master branch of Ghost in production. If you are using
Full instructions & troubleshooting tips can be found in the [Contributing Guide](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md) under the heading "[Working on Ghost Core](https://github.com/TryGhost/Ghost/blob/master/CONTRIBUTING.md#working-on-ghost-core)".
-Check out the [Documentation](http://docs.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
+Check out the [Documentation](http://support.ghost.org/) for more detailed instructions, or get in touch via the [forum](http://ghost.org/forum) if you get stuck.
If you want to use [Ghost as a NPM module there is a Wiki entry](https://github.com/TryGhost/Ghost/wiki/Using-Ghost-as-an-NPM-module) where you can find instructions on how to get set up.
### Upgrading to The Latest Version
-Upgrade instructions are in the [Ghost Guide](http://docs.ghost.org/installation/upgrading/)
+Upgrade instructions can be found on the [Ghost Support Site](http://support.ghost.org/how-to-upgrade/)
### Logging in For The First Time
diff --git a/config.example.js b/config.example.js
index a2d63d3b53..888511cae2 100644
--- a/config.example.js
+++ b/config.example.js
@@ -1,6 +1,6 @@
// # Ghost Configuration
// Setup your Ghost install for various environments
-// Documentation can be found at http://docs.ghost.org/usage/configuration/
+// Documentation can be found at http://support.ghost.org/config/
var path = require('path'),
config;
@@ -12,7 +12,7 @@ config = {
url: 'http://my-ghost-blog.com',
// Example mail config
- // Visit http://docs.ghost.org/mail for instructions
+ // Visit http://support.ghost.org/mail for instructions
// ```
// mail: {
// transport: 'SMTP',
diff --git a/core/server/api/authentication.js b/core/server/api/authentication.js
index 6576fa8c95..de4df0b270 100644
--- a/core/server/api/authentication.js
+++ b/core/server/api/authentication.js
@@ -230,7 +230,7 @@ authentication = {
errors.logError(
error.message,
"Unable to send welcome email, your blog will continue to function.",
- "Please see http://docs.ghost.org/mail/ for instructions on configuring email."
+ "Please see http://support.ghost.org/mail/ for instructions on configuring email."
);
});
diff --git a/core/server/index.js b/core/server/index.js
index 87dc3b3267..206d1b4a6b 100644
--- a/core/server/index.js
+++ b/core/server/index.js
@@ -42,7 +42,7 @@ function doFirstRun() {
'Your URL is set to',
'' + config.url + '.',
- 'See http://docs.ghost.org for instructions.'
+ 'See http://support.ghost.org for instructions.'
];
return api.notifications.add({ notifications: [{
@@ -175,7 +175,7 @@ function initNotifications() {
message: [
"Ghost is attempting to use your server's sendmail to send e-mail.",
"It is recommended that you explicitly configure an e-mail service,",
- "See http://docs.ghost.org/mail for instructions"
+ "See http://support.ghost.org/mail for instructions"
].join(' ')
}] }, {context: {internal: true}});
}
@@ -184,7 +184,7 @@ function initNotifications() {
type: 'warn',
message: [
"Ghost is currently unable to send e-mail.",
- "See http://docs.ghost.org/mail for instructions"
+ "See http://support.ghost.org/mail for instructions"
].join(' ')
}] }, {context: {internal: true}});
}