Skip to content

Reverse proxy with Apache

Vaidas Pilkauskas edited this page Jan 20, 2014 · 1 revision

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.

Clone this wiki locally