summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/Locale/ru_RU/translations.php2
-rw-r--r--doc/nice-urls.markdown3
2 files changed, 3 insertions, 2 deletions
diff --git a/app/Locale/ru_RU/translations.php b/app/Locale/ru_RU/translations.php
index e7f2d7a2..e5445ce1 100644
--- a/app/Locale/ru_RU/translations.php
+++ b/app/Locale/ru_RU/translations.php
@@ -844,7 +844,7 @@ return array(
'Stop timer' => 'Остановить таймер',
'Start timer' => 'Запустить таймер',
'Add project member' => 'Добавить номер проекта',
- 'Enable notifications' => 'Отключить уведомления',
+ 'Enable notifications' => 'Включить уведомления',
'My activity stream' => 'Лента моей активности',
'My calendar' => 'Мой календарь',
'Search tasks' => 'Поиск задачи',
diff --git a/doc/nice-urls.markdown b/doc/nice-urls.markdown
index 82292889..ace3b337 100644
--- a/doc/nice-urls.markdown
+++ b/doc/nice-urls.markdown
@@ -51,7 +51,7 @@ In the section `server` of your Nginx config file you can use this example:
index index.php;
location / {
- try_files $uri $uri/ /index.php;
+ try_files $uri $uri/ /index.php$is_args$args;
# If Kanboard is under a subfolder
# try_files $uri $uri/ /kanboard/index.php;
@@ -61,6 +61,7 @@ location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_index index.php;
include fastcgi_params;
}