Hi Adam,

The common setup is to configure Apache to talk to Review Board (a
configuration file is generated out of the box) and then to configure
Apache to serve up a SSL certificate. You'll need to have your VirtualHost
configure to use port 443 and point to your SSL cert file and enable SSL.

<VirtualHost *:443>
    ...

    SSLEngine on
    SSLCertificateFile /path/to/ssl.crt
    SSLCertificateKeyFile /path/to/ssl.key
    SetEnv HTTPS on
</VirtualHost>

You'll probably want to redirect port 80 to 443. There's a number of
documents on how to do this on Apache.

Once set up, configure .reviewboardrc files to use https:// instead of
http://

Depending on your setup, you might need to then go into Review Board's
Admin UI -> General Settings and change any "http://"; to "https://"; as well.

Christian

On Tue, Aug 14, 2018 at 6:06 PM <aboldingjo...@gmail.com> wrote:

> Hi,
>
> I want to get my team setup with Review Board, but one of our requirements
> is that traffic between clients and the Review Board server is encrypted.
> I'd like to be able to set up certificate validation, too. I've seen
> reference to SSL/TLS in passing in Review Board change lists, but I haven't
> been able to find any documentation on the kind of support Review Board
> offers for HTTPS connections. Can someone point me in the right direction?
>
> Thanks,
> Adam
>
> --
> Supercharge your Review Board with Power Pack:
> https://www.reviewboard.org/powerpack/
> Want us to host Review Board for you? Check out RBCommons:
> https://rbcommons.com/
> Happy user? Let us know! https://www.reviewboard.org/users/
> ---
> You received this message because you are subscribed to the Google Groups
> "Review Board Community" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to reviewboard+unsubscr...@googlegroups.com.
> For more options, visit https://groups.google.com/d/optout.
>


-- 
Christian Hammond
President/CEO of Beanbag <https://www.beanbaginc.com/>
Makers of Review Board <https://www.reviewboard.org/>

-- 
Supercharge your Review Board with Power Pack: 
https://www.reviewboard.org/powerpack/
Want us to host Review Board for you? Check out RBCommons: 
https://rbcommons.com/
Happy user? Let us know! https://www.reviewboard.org/users/
--- 
You received this message because you are subscribed to the Google Groups 
"Review Board Community" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to reviewboard+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to