On Linux it gives a easy way to do this.
On Ubuntu/Debian, haproxy is supported on many more plattforms
You need following package haproxy http://www.haproxy.org/
sudo apt-get install haproxy
Config is empty with no function
sudo nano /etc/haproxy/haproxy.cfg
Paste this code in to haproxy.cfg
- Code: Select all
frontend public
bind *:80
default_backend www
backend www
timeout server 30s
server www1 127.0.0.1:4040
service haproxy restart
Now subsonic is runnig under port 80
For SSL Support please look here
http://blog.haproxy.com/2012/09/04/howt ... n-haproxy/
Original Post
http://konkretor.blog.de/2015/02/22/sub ... -20123105/