FAQ/Questions/Secure-https-on-a-load-balancer.md
... ...
@@ -1 +1,25 @@
1
-Re-purpose this page.
... ...
\ No newline at end of file
0
+#Secure HTTPS on a Load Balancer
1
+
2
+##Question
3
+
4
+How can I use an HTTPS load balancer with Izenda?
5
+
6
+##Answer
7
+
8
+If you are using a load balancer that does not support http (vs https), please set the following settings so the application can find images and css.
9
+
10
+```csharp
11
+string sUrl =”https://www.domain.com/App/Reporting/rs.aspx”;
12
+
13
+Izenda.AdHoc.AdHocSettings.ResponseServer = sUrl;
14
+Izenda.AdHoc.AdHocSettings.ReportCssUrl = sUrl + "?css=report";
15
+Izenda.AdHoc.AdHocSettings.ToolbarCssUrl = sUrl + "?css=toolbar";
16
+Izenda.AdHoc.AdHocSettings.TabsCssUrl = sUrl + "?css=tabs";
17
+```
18
+
19
+Please refer to these articles for information about these settings
20
+
21
+* [[ResponseServer|/API/CodeSamples/ResponseServer]]
22
+* [[ReportCssUrl|/API/CodeSamples/ReportCssUrl]]
23
+* [[ToolbarCssUrl|/API/CodeSamples/ToolbarCssUrl]]
24
+* [[TabsCssUrl|/API/CodeSamples/TabsCssUrl]]
... ...
\ No newline at end of file