Update code base and doc to use kanboard.org domain
This commit is contained in:
@@ -12,7 +12,7 @@ There are many software compatible with the standard TOTP system.
|
||||
For example, you can use these applications:
|
||||
|
||||
- [Google Authenticator](https://github.com/google/google-authenticator/) (Android, iOS, Blackberry)
|
||||
- [FreeOTP](https://fedorahosted.org/freeotp/) (Android, iOS)
|
||||
- [FreeOTP](https://freeotp.github.io/) (Android, iOS)
|
||||
- [OATH Toolkit](http://www.nongnu.org/oath-toolkit/) (Command line utility on Unix/Linux)
|
||||
|
||||
This system can work offline and you don't necessarily need to have a mobile phone.
|
||||
|
||||
@@ -22,10 +22,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R apache:apache kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R apache:apache kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Centos 6.x
|
||||
@@ -54,10 +57,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R apache:apache kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R apache:apache kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
SELinux restrictions
|
||||
|
||||
@@ -36,7 +36,7 @@ define('PLUGIN_INSTALLER', true); // Default is true
|
||||
Change default plugin directory URL:
|
||||
|
||||
```php
|
||||
define('PLUGIN_API_URL', 'https://kanboard.net/plugins.json');
|
||||
define('PLUGIN_API_URL', 'https://kanboard.org/plugins.json');
|
||||
```
|
||||
|
||||
Folder for uploaded files
|
||||
|
||||
@@ -37,7 +37,7 @@ I want to translate Kanboard
|
||||
----------------------------
|
||||
|
||||
Kanboard is translated in many languages.
|
||||
However, translations are not complete, take look at the [translation guide to contribute](https://kanboard.net/documentation/translations).
|
||||
However, translations are not complete, take look at the [translation guide to contribute](translations.markdown).
|
||||
|
||||
I want to improve the documentation
|
||||
-----------------------------------
|
||||
|
||||
@@ -16,10 +16,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Debian 7 (Wheezy)
|
||||
@@ -36,10 +39,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Debian 6 (Squeeze)
|
||||
@@ -56,10 +62,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
wget https://kanboard.net/kanboard-latest.zip
|
||||
unzip kanboard-latest.zip
|
||||
chown -R www-data:www-data kanboard/data
|
||||
rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Notes
|
||||
|
||||
@@ -90,12 +90,11 @@ That can be useful if your SMTP server configuration doesn't accept the default
|
||||
|
||||
### How to display a link to the task in notifications?
|
||||
|
||||
To do that, you have to specify the URL of your Kanboard installation in your [Application Settings](https://kanboard.net/documentation/application-configuration).
|
||||
To do that, you have to specify the URL of your Kanboard installation in your [Application Settings](application-configuration.markdown).
|
||||
By default, nothing is defined, so no links will be displayed.
|
||||
|
||||
Examples:
|
||||
|
||||
- http://demo.kanboard.net/
|
||||
- http://myserver/kanboard/
|
||||
- http://kanboard.mydomain.com/
|
||||
|
||||
|
||||
@@ -7,8 +7,11 @@ OpenSuse Leap 42.1
|
||||
```bash
|
||||
sudo zypper install php5 php5-sqlite php5-gd php5-json php5-mcrypt php5-mbstring php5-openssl
|
||||
cd /srv/www/htdocs
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R wwwrun /srv/www/htdocs/kanboard
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
sudo wget https://github.com/kanboard/kanboard/archive/v<VERSION>.zip
|
||||
|
||||
sudo unzip kanboard-<version>.zip
|
||||
sudo chown -R wwwrun /srv/www/htdocs/kanboard-<version>
|
||||
sudo rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
@@ -73,17 +73,17 @@ Links
|
||||
### Source
|
||||
|
||||
```
|
||||
[My link title](https://kanboard.net/)
|
||||
[My link title](https://kanboard.org/)
|
||||
|
||||
<https://kanboard.net>
|
||||
<https://kanboard.org>
|
||||
|
||||
```
|
||||
|
||||
### Result
|
||||
|
||||
[My link title](https://kanboard.net/)
|
||||
[My link title](https://kanboard.org/)
|
||||
|
||||
<https://kanboard.net>
|
||||
<https://kanboard.org>
|
||||
|
||||
Source code
|
||||
-----------
|
||||
|
||||
@@ -16,10 +16,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Ubuntu Trusty 14.04 LTS
|
||||
@@ -36,10 +39,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www/html
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Ubuntu Precise 12.04 LTS
|
||||
@@ -56,10 +62,13 @@ Install Kanboard:
|
||||
|
||||
```bash
|
||||
cd /var/www
|
||||
sudo wget https://kanboard.net/kanboard-latest.zip
|
||||
sudo unzip kanboard-latest.zip
|
||||
sudo chown -R www-data:www-data kanboard/data
|
||||
sudo rm kanboard-latest.zip
|
||||
|
||||
# Download the latest release from https://github.com/kanboard/kanboard/releases
|
||||
wget https://github.com/kanboard/kanboard/archive/v<version>.zip
|
||||
|
||||
unzip kanboard-<version>.zip
|
||||
chown -R www-data:www-data kanboard-<version>/data
|
||||
rm kanboard-<version>.zip
|
||||
```
|
||||
|
||||
Some features of Kanboard require that you run [a daily background job](cronjob.markdown).
|
||||
|
||||
@@ -18,7 +18,7 @@ This feature is optional and require the installation of a queue daemon on your
|
||||
[Beanstalk](http://kr.github.io/beanstalkd/) is a simple, fast work queue.
|
||||
|
||||
- To install Beanstalk, you can simply use the package manager of your Linux distribution
|
||||
- Install the [Kanboard plugin for Beanstalk](https://kanboard.net/plugin/beanstalk)
|
||||
- Install the [Kanboard plugin for Beanstalk](https://github.com/kanboard/plugin-beanstalk)
|
||||
- Start the worker with the Kanboard command line tool: `./cli worker`
|
||||
|
||||
### RabbitMQ
|
||||
@@ -26,7 +26,7 @@ This feature is optional and require the installation of a queue daemon on your
|
||||
[RabbitMQ](https://www.rabbitmq.com/) is a robust messaging system that is more suitable for high-availability infrastructure.
|
||||
|
||||
- Follow the official documentation of RabbitMQ for the installation and the configuration
|
||||
- Install the [Kanboard plugin for RabbitMQ](https://kanboard.net/plugin/rabbitmq)
|
||||
- Install the [Kanboard plugin for RabbitMQ](https://github.com/kanboard/plugin-rabbitmq)
|
||||
- Start the worker with the Kanboard command line tool: `./cli worker`
|
||||
|
||||
### Notes
|
||||
|
||||
Reference in New Issue
Block a user