Skip to content

Instantly share code, notes, and snippets.

@sl-digital
Created May 26, 2015 21:01
Show Gist options
  • Save sl-digital/725fcab7c03ce2a29c58 to your computer and use it in GitHub Desktop.
Save sl-digital/725fcab7c03ce2a29c58 to your computer and use it in GitHub Desktop.
Atlassian Stash on OSX Server
/*
* 1) Install Atalassian Stash on default port 7990
* 2) Create new website on OSX Server (http://stash.osx-server.com)
* 3) Update VHosts on OSX Server for site created above with ProxyBalancer entry
* 4) Start Stash with shell script
* 5) Check site in browser to make sure forwarding is working
*/
<IfModule mod_proxy_balancer.c>
ProxyPass / balancer://balancer-group/
ProxyPassReverse / balancer://balancer-group
<Proxy "balancer://balancer-group">
BalancerMember http://stash.osx-server.com:7990
</Proxy>
</IfModule>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment