Skip to content

Commit

Permalink
Add changelog, update README
Browse files Browse the repository at this point in the history
  • Loading branch information
muxx committed Dec 17, 2013
1 parent 3c9b15a commit 7bba527
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 10 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
CHANGELOG / Intaro Pinboard
===========================

* 1.1 (2013-12-16)

* bug #55 ./console aggregate return PDOException
* bug #52 String-like sorting fields at the main overview
* feature #50 Show request distribution by hostname on chart "Requests per sec"
* feature #49 Combine error pages in email notifications
* feature #48 Add option to ignore some hosts for notification

* 1.0 (2013-10-13)

* feature #45 Embed migration machinery

* 0.1

* First version of Intaro Pinboard
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Intaro Pinboard
=============================

[Intaro Pinboard][1] (Pinba Board) is a simple web monitoring system which aggregates and displays [Pinba][2] data.
[Intaro Pinboard][1] (Pinba Board) is a simple web monitoring system which aggregates and displays [Pinba][2] data.

Developed on [Silex][3] framework and works with PHP 5.3.3 or later.

Expand All @@ -11,7 +11,7 @@ Developed on [Silex][3] framework and works with PHP 5.3.3 or later.

$ git clone git://github.com/intaro/pinboard.git
$ cd ./pinboard
$ git checkout v1.0
$ git checkout v1.1

2. Download [composer](http://getcomposer.org):

Expand All @@ -33,43 +33,43 @@ Developed on [Silex][3] framework and works with PHP 5.3.3 or later.

6. Point the document root of your webserver or virtual host to the web/ directory. Read more in [Silex documentation][4]. Example for nginx + php-fpm:

server {
server {
listen 80;
server_name pinboard.site.ru;
root /var/www/pinboard/web;

#site root is redirected to the app boot script
location = / {
try_files @site @site;
}

#all other locations try other files first and go to our front controller if none of them exists
location / {
try_files $uri $uri/ @site;
}

#return 404 for all php files as we do have a front controller
location ~ \.php$ {
return 404;
}

location @site {
fastcgi_pass unix:/tmp/php-fpm.sock;
include fastcgi_params;
fastcgi_param SCRIPT_FILENAME $document_root/index.php;
fastcgi_param HTTPS $https if_not_empty;
}

location ~ /\.(ht|svn|git) {
deny all;
}
}

## Update

### Update from 0.1.x to 1.0.x
### Update from 0.1 to 1.0

Branch 1.0 brings migrations machinery which allows to update Pinboard easy when it requires database schema transformation.
Branch 1.0 brings migrations machinery which allows to update Pinboard easy when it requires database schema transformation.

Switch to branch 1.0

Expand Down

0 comments on commit 7bba527

Please sign in to comment.