Reverse-Proxy
1 TopicSimple Reverse Proxy with iRules
Hello! I simply want to create a reverse proxy for http://mediawiki.pva.sozvers.at/. I created a Virtual Server http://f5wiki.pva.sozvers.at/ , enabled the http-profile, the stream Profile, configured a default-pool with the node http://mediawiki.pva.sozvers.at/ and finally wrote an iRule. I worked everything through at this site https://techdocs.f5.com/content/kb/en-us/products/big-ip_ltm/manuals/product/ltm-implementations-11-6-0/25.html But I want to do that with iRules instead of the Rewrite Profile+Policy, as I am new to f5 and would like to learn more about it. So here is my Try: when HTTP_REQUEST { STREAM::disable if { [HTTP::host] eq "f5wiki.pva.sozvers.at"} { HTTP::redirect "http://mediawiki.pva.sozvers.at" } } when HTTP_RESPONSE { STREAM::disable # Rewrite the Host header for redirects HTTP::header replace "http://mediawiki.pva.sozvers.at" "f5wiki.pva.sozvers.at" STREAM::enable } It almost works. When calling the f5wiki.pva.sozvers.at-host i get redirected to my Node wiki. Problem is:, the URL changes to mediawiki..., where I want the URL to stay the same. Can someone help me? Thank youSolved2.2KViews0likes2Comments