giosg Proxy
Info
This functionality is only available as separately sold product. Please contact us at sales@giosg.com in order to get more information.
Overview¶
giosg Proxy is a separately sold product, which allows our Customers to host their own proxy server between website visitors and giosg servers. Proxy server receives all requests from the visitor's browser, forwards those to giosg servers and then returns server responses to the visitors with the appearance of it coming from the proxy server itself.
For example, you could have an existing website such as bank.com. By using a proxy setup, the giosg content would appear to be hosted from the chat.bank.com server when it's actually coming from giosg's servers. We could call this also as a server whitelabeling.
If communication between giosg servers and your website visitor is routed through the proxy:
- For the website visitors it looks like the service is located on your datacenter
- Your company has visibility to the communication. You can monitor what has been transmitted between giosg and your end customers
- In case of emergency, you can suspend the service simply by closing the proxy
Prerequisites¶
It's recommended that you first read giosg - How does the v2 giosg script work, so you have basic understanding about giosg script.
Reference proxy implementation¶
Giosg has test proxy proxy-test.giosg.com, which can be used as reference implementation for testing the proxy setup. We are also using this as an example when explaining proxy related settings.
Setting up the Proxy¶
Proxy settings¶
Warning
Do not set proxy urls before you have working proxy server, because settings are immediately activated for all of your website visitors.
If giosg Proxy product has been activated to you giosg account, you can find proxy configuration as part of the Settings -> Company -> Company settings.
By setting the "Proxy url for giosg script" config parameter, all url resources inside are pointing to this url-prefix instead of the https://service.giosg.com. For the reference proxy implementation, the value for this field would be https://proxy-test.giosg.com/.
Interactions are using a separate "CDN url for interactions" config. This allows interactions to fetch resources like pictures and fonts also in the situations where interactions are loaded by third party code without giosg script.
Script tag¶
Proxy can be used with the default V2 script tag, however then the first request will point directly to service.giosg.com domain instead of your proxy server. In order to change this first request functionality, you should use a modified script tag with a proxy domain. You can find your unique tag under Settings -> Company -> Script tag after you have added the proxy settings.
For the reference proxy implementation proxy-test.giosg.com, the script tag is:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
Setting up the proxy server¶
Below you can find nginx configuration which can be used as is for the proxy server, or you can use some other proxy technology and use this configuration as an example for your own setup. This configuration is also used by proxy-test.giosg.com reference implementation.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 |
|
Additional info¶
Please contact us at support@giosg.com in order to get more information.