Ensure the wsgi module is installed and loaded into your web server. In apache on centos, I have the following installed:
mod_wsgi-3.4-18.el7.x86_64 uwsgi-plugin-common-2.0.17.1-2.el7.x86_64 uwsgi-2.0.17.1-2.el7.x86_64 uwsgi-plugin-python2-2.0.17.1-2.el7.x86_64 mod_proxy_uwsgi-2.0.17.1-2.el7.x86_64 You need the following in your /etc/httpd/conf.d/rb.conf file - the wsgi things are the most important: WSGIPassAuthorization On WSGIScriptAlias "/" "/var/www/reviewboard/htdocs/reviewboard.wsgi/" Alias /media "/var/www/reviewboard/htdocs/media" Alias /static "/var/www/reviewboard/htdocs/static" Alias /errordocs "/var/www/reviewboard/htdocs/errordocs" Alias /favicon.ico "/var/www/reviewboard/htdocs/static/rb/images/favicon.png" DocumentRoot "/var/www/reviewboard/htdocs" <Directory "/var/www/reviewboard/htdocs"> AllowOverride All Options -Indexes +FollowSymLinks Allow from all </Directory> -- 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 [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/reviewboard/0bf4bdd0-c25f-4950-b312-3581a0ab843f%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
