Skip to content

Commit

Permalink
Prep for v6.2.10
Browse files Browse the repository at this point in the history
  • Loading branch information
belgattitude committed Jan 15, 2017
1 parent 4289af9 commit 406eade
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 4 deletions.
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
# CHANGELOG


## 6.2.1_1 (2017-01-15)
## 6.2.10 (2017-01-15)

### Changes

- Cleanup embedded php-cgi binaries [see #3](https://github.com/belgattitude/php-java-bridge/issues/3)
- Removal embedded php-cgi binaries [see #3](https://github.com/belgattitude/php-java-bridge/issues/3)
- Source code indentation
- README.md: added Recipe for building and deploying on tomcat

### Fixes

- Added a `build-php5.6.xml` ant config

### Documentation

- README.md: added Recipe for building and deploying on tomcat

26 changes: 26 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,32 @@ cp dist/JavaBridgeTemplate.war /var/lib/tomcat7/webapps

Wait few seconds for deployment and point your browser to [http://localhost:8080/JavaBridge](http://localhost:8080/JavaBridgeTemplate).

Errors are logged by default into

```console
$ cat /var/log/tomcat7/catalina.out
```

### Tomcat tuning tips

If you get OutOfMemory errors, you can increase the java heap tomcat:

```console
$ vi /etc/default/tomcat7
```

Look for the Xmx default at 128m and increase

```
JAVA_OPTS="-Djava.awt.headless=true -Xmx512m -XX:+UseConcMarkSweepGC"
```

and restart

```console
sudo service tomcat7 restart
```

### How to build documentation

You can build the doc with
Expand Down

0 comments on commit 406eade

Please sign in to comment.