FGLPROFILE: HTTP(S) Proxy Authentication
FGLPROFILE entries can be used to define a connection to an HTTPS server via a proxy, and with HTTP and Proxy Authentication.
# Security configuration
security.global.script = "Cert/password.sh"
security.global.ca = "Cert/CAList.pem"
security.global.cipher = "HIGH" # Use only HIGH encryption ciphers
security.mykey.certificate = "Cert/MyCertificateA.crt"
security.mykey.privatekey = "Cert/MyPrivateKeyA.pem"
# Proxy HTTP Authentication
authenticate.proxyauth.login = "myapplication"
authenticate.proxyauth.password = "mypswd"
authenticate.proxyauth.scheme = "Basic"
# HTTPS Proxy configuration
proxy.https.location = "10.0.0.170"
proxy.https.list = "www.mycompany.com;www.mycompany.com"
proxy.https.authenticate = "proxyauth"
# Server HTTP Authentication
authenticate.serverauth.login = "mylogin"
authenticate.serverauth.password = "password"
# Server configuration
ws.myserver.url = "https://www.MyServer.com/gas/ws/r/MyWebService"
ws.myserver.authenticate = "serverauth"
ws.myserver.security = "mykey"