Created Reverse proxy with Apache (markdown)

Vaidas Pilkauskas
2014-01-20 04:06:05 -08:00
parent d9e50c3548
commit 609898910b

@@ -0,0 +1,13 @@
### Prerequisites
1. Is installed and running on your server.
2. GitBucket is running on some `port`. The default is `8080`.
### Apache HTTP server set up
1. Install and enable `mod_proxy` and `mod_proxy_http` modules.
2. Add the following to your site configuration (assuming your GitBucket prefix is "gitbucket"):
ProxyPreserveHost On
ProxyPass /gitbucket http://localhost:8080/gitbucket
ProxyPassReverse /gitbucket http://localhost:8080/gitbucket
> Note! Apache and GitBucket context paths must be equal.