I am configuring reverse proxy for jenkins on IIS 10. I get 500 - Internal server error.URL Rewrite Module Error. and Jekins shows the message "It appears that your reverse proxy set up is broken". I have added inbound and outbound rules with "localhost", IP Address and with host name as well. Is there anything else specific to IIS I need to configure?
Jenkins reverse proxy on IIS
1.5k Views Asked by Ashok Krishnamoorthy At
1
There are 1 best solutions below
Related Questions in JENKINS
- How to export credentials from one jenkins instance to another?
- JENKINS Maven Build Failure
- Why does the Jenkins SVN plugin give error E170001 when connecting to my VisualSVN server?
- Jenkins build is stuck pending
- Some of my tests show prepended with junit.framework
- Restrict number of instances of a build in the queue
- how to generate xml report using python-green for unit testing and coverage?
- Behave test runner has no colored output on Jenkins
- Test Selector Plugin Jenkins returns No tests were executed
- jenkins with groovy postbuild .Not able to execute anything in groovy script field
- Not able to build maven project using Maven configured with Jenkins
- Sonnar runner in Jenkins error in java project
- How can I read build.xml parameters into Jenkins ?
- Cannot access file on Jenkins slave with plugin
- Excluding jobs that haven't run recently from a view in Jenkins
Related Questions in URL-REWRITING
- AngularJS, Google App Engine and URLrewrite
- How to rewrite url to match root directory?
- How to remove hash sign (#) from url using .htaccess
- .htaccess - remove query string
- WordPress - Rewrite rules with multiple parameters
- SEO friendly URl in asp.net
- Jetty9 for url-rewrite
- htaccess to rewrite uri into get if not file/folder
- unable to escape "?" in the url rewriting in htaccess
- Apache rewrite url help, add string in the middle of the url
- How do can I code a rewrite rule in IIS 8 so that all traffic points to https://www.*.com from http://*.com?
- ARR with SSL offloading: app needs to know it was SSL
- Magento - URL rewriting or redirection issue
- 500 Error when '/' in url with url rewriting
- Nginx redirect http subdomains to https
Related Questions in REVERSE-PROXY
- Apache Reverse Proxy erases <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
- How to configure standalone Jetty 9 as a reverse proxy to a node app?
- How to set up a reverse proxy in nodejs for multiple targets?
- Nginx and Tomcat - subdomain pointing to subdirectory
- How to proxy an external site in Express
- Reverse Proxy on IIS for an asp.net applications
- Connecting to external broker through restricted network using Paho Java Client
- Nginx module: how to get variables value from conf file
- How to setup apache reverse proxy for particular domain
- POST request reverse Proxy
- nginx reverse proxy "ip address shows"
- Correct Usage of OAuth 2.0 Grant Types
- Nginx & Node inside the same Docker container
- node.js, trying to route sub-domain to specific directory
- Redirect Error When using [OR] flag with RewriteCond
Related Questions in IIS-10
- IIS PHP 7.1 PECL DLL Libraries
- IIS 10 Gives Blank Screen for PHP 7.1.0 in phpinfo() page
- RedirectFromLoginPage or Response.Redirect do not work with IIS10
- IIS 10 fails to parse .cshtml file
- Install php_oci8_11g at Windows 10 IIS 10
- How to debug a service in hosting WCF side-by-side with ASP.NET
- How to install IIS Admin Service on Windows 10 Pro
- Crash issue on windows server 2016 DataCenter
- Openiddict implicitflow premature token expiration
- Asp.net core 2 deployment to IIS10 (Windows Server 2016)
- Dynamic IP address restriction presence in IIS 10
- How to remove 'blank' files from Visual Studio when debugging Classic ASP
- Jenkins reverse proxy on IIS
- How to make ASP.Net WebAPI Server available on LAN
- Upgrading SQL Management from Express 2012 to Enterprise 2016
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I also have "It appears that your reverse proxy set up is broken", but everything works fine (i.e. I can access my Jenkins instance from another computer without any issues).
My setup is as follows:
Path Prefix
In jenkins.xml I have provided the prefix I want to have for my Jenkins instance:
IIS configuration
web.config for the web site that should be used as a reverse proxy looks the following:
This assumes that Jenkins runs on its default port: 8080.
Not sure, but I think that Configure -> Jenkins location -> Jenkins URL should point to something like
http://your_host_name/jenkins.Of course, Web site bindings should include your hostname to access Jenkins from another machine.