If you are running Octane behind an existing proxy, Octane will try to find the current setup of your proxy and use it. Workarounds to bypass the proxy settings will not be valid.
If you are trying to setup your proxy for the first time or your proxy requires authentication, you may configure it either by using your operating system proxy settings or environment variables.
This option allows OctaneRender to retrieve your system settings, the configuration will depend on your host operating system:
For Windows:
On Windows Octane can obtain its proxy configuration from the following sources:
From Internet Explorer's LAN Settings: This configuration applies only to the current user. To change IE proxy settings:
inetcpl.cpl ,4
and click OK. You will see the Internet Properties window displayed.If you have a dedicated proxy for HTTPS traffic, click on Advanced, uncheck Use the same proxy for all protocols and specify proxy address and port for the Secure server type.
From the WinHTTP configuration: This configuration is system-wide and usually stored in the registry. It can be managed using "netsh winhttp". For more information, please check Windows HTTP documentation from Microsoft.
The proxy exceptions list is currently ignored.
Mac OSX:
OctaneRender reads the proxy settings stored in the system preferences. To change your proxy settings:
Bypass proxy settings are currently not used by Octane.
Port numbers will default to 80 if using HTTP and 443 if using HTTPS if none is explicitly specified.
The proxy authentication through proxy settings is not supported on MAC systems. If your proxy requires username and password, please refer to the following section about proxy configuration via environment variables.
Linux:
The proxy settings may vary between distributions so proxy configuration on Linux is just supported via environment variables.
The proxy configuration via environment variables:
OctaneRender supports the following proxy environment variables:
https_proxy: Specifies a proxy server for HTTPS network traffic.
all_proxy: Specifies a proxy server for all network traffic.
These are commonly used environment variables for specifying proxy configuration, specially on Linux. From Octane's perspective it's really up to you which one you decide to use, just take into account that this may affect other applications which may also make use of them.
If one of these variables if found this will override your system's proxy preferences even if there's a configured proxy already.
Note: Environment variables are case sensitive, even on Windows, for security reasons.
The accepted syntax for proxy environment variables is [protocol://][user:password@]proxyhost[:port]
As a way of example, you may expecify a proxy for HTTPS network traffic as https_proxy=johndoe:[email protected]. This will tell Octane to use 127.0.1.50 as your proxy's address using the default port 80 and authenticate as user "johndoe" with password "mypass".