summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/api-json-rpc.markdown6
-rw-r--r--docs/centos-installation.markdown5
-rw-r--r--docs/secure-connections.markdown59
3 files changed, 7 insertions, 63 deletions
diff --git a/docs/api-json-rpc.markdown b/docs/api-json-rpc.markdown
index fa9fec85..a6420149 100644
--- a/docs/api-json-rpc.markdown
+++ b/docs/api-json-rpc.markdown
@@ -608,7 +608,7 @@ Response example:
- Purpose: **Get all available tasks**
- Parameters:
- **project_id** (integer, required)
- - **status**: List of status id, the value 1 for active tasks and 0 for inactive (list, required)
+ - **status**: The value 1 for active tasks and 0 for inactive (integer, required)
- Result on success: **List of tasks**
- Result on failure: **false**
@@ -621,9 +621,7 @@ Request example to fetch all tasks on the board:
"id": 133280317,
"params": {
"project_id": 1,
- "status": [
- 1
- ]
+ "status": 1
}
}
```
diff --git a/docs/centos-installation.markdown b/docs/centos-installation.markdown
index f8963ecd..f5a31043 100644
--- a/docs/centos-installation.markdown
+++ b/docs/centos-installation.markdown
@@ -1,6 +1,11 @@
Centos Installation
===================
+Centos 7
+--------
+
+
+
Centos 6.5
----------
diff --git a/docs/secure-connections.markdown b/docs/secure-connections.markdown
deleted file mode 100644
index 109574ae..00000000
--- a/docs/secure-connections.markdown
+++ /dev/null
@@ -1,59 +0,0 @@
-How to Enable Secure Connections
-================================
-
-If you are hosting Kanboard on a public server, and plan on accessing it via the internet, it is a good idea to enable SSL connections to encrypt your data. This is very simple to do with a self-signed certificate. The following instructions were created and tested on a server running Debian 7 (Wheezy) but they should work for any other Linux distribution.
-
-OpenSSL Installation and Configuration
---------------------------------------
-Install OpenSSL:
-
-```bash
-apt-get update
-apt-get install openssl
-```
-Enable OpenSSL:
-
-```bash
-a2enmod ssl
-```
-
-Create a self-signed certificate:
-
-```bash
-mkdir /etc/apache2/ssl
-openssl req -new -x509 -days 365 -nodes -out /etc/apache2/ssl/kanboard.pem -keyout /etc/apache2/ssl/kanboard.key
-```
-
-Apache Configuration
---------------------
-Create an apache configuration file:
-
-```bash
-nano /etc/apache2/conf.d/kanboard.conf
-```
-
-The contents of this file should look like this:
-
-```bash
-<VirtualHost 127.0.0.1:443>
- SSLEngine on
- SSLCertificateFile /etc/apache2/ssl/kanboard.pem
- SSLCertificateKeyFile /etc/apache2/ssl/kanboard.key
- DocumentRoot /var/www
-<Directory kanboard>
- AllowOverride All
- order allow, deny
- Allow from all
-</Directory>
-</VirtualHost>
-```
-
-Be sure to replace 127.0.0.1 with the IP address of your server. If you are hosting kanboard in a location other than /var/www , be sure to update the DocumentRoot to match the location where you are hosting your Kanboard site.
-
-Restart Apache:
-
-```bash
-service apache2 restart
-```
-
-You will now be able to access your Kanboard site securely by navigating to `https://www.example.com/kanboard`. Your browser will indicate that the certificate is not trusted. This is due to the fact that it is self signed. You can safely ignore this warning, although the certificate is not trusted, your data is still encrypted.