Alfred, Can you check the result of `rb-site manage /var/www/html/rb/ get-siteconfig -- --key=site_media_url` ?
My guess is that it will say "/rb/htdocs/media/" If so, run this: `rb-site manage /var/www/html/rb/ set-siteconfig -- --key=site_media_url --value="/media/" And it should fix the links. -David On Wed Feb 25 2015 at 2:10:58 PM Alfred von Campe <[email protected]> wrote: > On Feb 25, 2015, at 16:30, David Trowbridge <[email protected]> wrote: > > > What does the web server configuration look like? > > > <VirtualHost *:80> > ServerName hepdsw-rb.bose.com > DocumentRoot "/var/www/html/rb/htdocs" > > # Error handlers > ErrorDocument 500 /errordocs/500.html > > WSGIPassAuthorization On > WSGIScriptAlias "/" "/var/www/html/rb/htdocs/reviewboard.wsgi/" > > <Directory "/var/www/html/rb/htdocs"> > AllowOverride All > Options -Indexes +FollowSymLinks > Allow from all > </Directory> > > # Prevent the server from processing or allowing the rendering of > # certain file types. > <Location "/media/uploaded"> > SetHandler None > Options None > > AddType text/plain .html .htm .shtml .php .php3 .php4 > .php5 .phps .asp > AddType text/plain .pl .py .fcgi .cgi .phtml .phtm .pht > .jsp .sh .rb > > <IfModule mod_php5.c> > php_flag engine off > </IfModule> > </Location> > > <Location "/static"> > SetHandler None > </Location> > > # Alias static media requests to filesystem > Alias /media "/var/www/html/rb/htdocs/media" > Alias /static "/var/www/html/rb/htdocs/static" > Alias /errordocs "/var/www/html/rb/htdocs/errordocs" > Alias /favicon.ico > "/var/www/html/rb/htdocs/static/rb/images/favicon.png" > </VirtualHost> > > > > -- > 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 > "reviewboard" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- 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 "reviewboard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
