Original Publication Date: 12/19/2007
Updated Date: 09/10/2006
To use the configuration utility to create a BIG-IP LTM profile with a BEA WebLogic header insert, perform the following procedure:
Log in to the Configuration utility.
From the main navigation panel, click Local Traffic.
Click Profiles.
From the Profiles screen, click the Create button.
In the name field, type a name for the profile.
From the Parent Profile menu, select http.
In the Request Header Insert field, type the following:
Note: In BIG-IP versions prior to 9.4, this field is labeled Header Insert.
WL-Proxy-SSL: true
Click the Finished button.
Use this profile when you create virtual servers for the BEA WebLogic server. Any virtual server that uses this profile will insert the necessary header.
To use the command line to create a BIG-IP profile with a BEA WebLogic header insert, perform the following procedure:
Log in to the command line.
Back up the /config/bigip.conf file, by typing the following command:
cp /config/bigip.conf /config/bigip.conf.original
Using a text editor, edit the /config/bigip.conf file.
Add the following lines to the end of the file, replacing <name> with the name you want to give to the new profile:
profile http <name> {
defaults from http
header insert "WL-Proxy-SSL: true"
}
For example:
profile http WebLogic80 {
defaults from http
header insert "WL-Proxy-SSL: true"
}
Save the file and exit the editor.
Load the configuration, by typing the following command:
bigpipe load
Use this profile when you create virtual servers for the BEA WebLogic server. Any virtual server that uses this profile will insert the necessary header.