Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Simple Reverse Proxy Not Working (BitBucket 5.6 & Apache)

Carmine Valentino January 4, 2018

I have scoured these forums and spent days attempting to fix this problem, but I have not had any luck.

I have a test development server that I am setting up on AWS and I am attempting to redirect both Jira and Bitbucket using Apache Reverse Proxy, to a subdomain and context path on port 80 (for now, ssl later).

I got Jira working in MINUTES. Bitbucket, and its properties file, has given me serious headaches. I get nothing but a white screen when attempting to access my proxy address for bitbucket. Reverting my proxy and using port 7990 directly works.

Please find below relevant snippets from both my apache.conf file, and bitbucket.properties:

 

apache.conf:

<VirtualHost dev.myserver.org:80> 

        ServerAdmin webmaster@localhost

        DocumentRoot /var/www/html

        ServerName dev.myserver.org

        ErrorLog ${APACHE_LOG_DIR}/error.log

        CustomLog ${APACHE_LOG_DIR}/access.log combined

        #LogLevel debug

        ProxyRequests Off

        <Proxy *>

                Order deny,allow

                Require all granted

        </Proxy>

        ProxyPass /bitbucket http://localhost:7990/bitbucket connectiontimeout=5 timeout=300

        ProxyPassReverse /bitbucket http://localhost:7990/bitbucket

        ProxyPass /jira http://localhost:8080/

        ProxyPassReverse /jira http://localhost:8080/

</VirtualHost>

 

bitbucket.properties

#>*******************************************************

#> Migrated to database at jdbc:postgresql://127.0.0.1:5432/bitbucket

#> Updated on 2017-12-31T08:06:53.970Z

#>*******************************************************

server.context-path=/bitbucket

jdbc.driver=org.postgresql.Driver

jdbc.url=jdbc:postgresql://127.0.0.1:5432/bitbucket

jdbc.user=##

jdbc.password=##

server.port=7990

server.secure=false

server.scheme=http

server.proxy-port=80

server.proxy-name=dev.myserver.org

 

1 answer

0 votes
edwin
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 15, 2018

Hi Carmine,

Bitbucket should be running on 7990 without the context path. Also remove the server.port and it will default to the server.xml

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events