Hi,

I'm trying to use apache as a reverse proxy for Jenkins (1.492), it 
generally works, but there is an issue when creating a new job.
When selecting the radio button for a maven 2/3 project, a new 'panel' 
appears between the job name field and the radio buttons.
Does anyone have an idea on how to resolve this?

Screenshot: 
http://imageshack.us/photo/my-images/96/screenshotfrom201212041.png
Apache config (irrelevant sections removed):

<VirtualHost *:80>
    ServerAdmin webmaster@localhost

    DocumentRoot /var/www
    AllowEncodedSlashes on
    <Directory />
        Options FollowSymLinks
        AllowOverride None
    </Directory>
    <Directory /var/www/>
        Options Indexes FollowSymLinks MultiViews
        AllowOverride None
        Order allow,deny
        allow from all
    </Directory>

    ErrorLog ${APACHE_LOG_DIR}/error.log

        SetOutputFilter INFLATE;proxy-html;DEFLATE

        ProxyHTMLCharsetOut *
        ProxyHTMLExtended Off
        PROXYHTMLDoctype HTML
    ProxyRequests Off
        <Proxy *>
                Order deny,allow
                Allow from all
        </Proxy>

       
ProxyPreserveHost On

    # Jenkins area
    ProxyPass /jenkins http://lcm-ci:8080/jenkins
        <Location /jenkins >
               ProxyPassReverse /
        SetEnv proxy-nokeepalive 1
        </Location>

</VirtualHost>


Regards,
Steven

Reply via email to