Hi
I have confluence 6.4 installed behind an IIS 8.0 installation where I followed this guide: https://confluence.atlassian.com/kb/proxying-atlassian-server-applications-with-microsoft-internet-information-services-iis-833931378.html
server.xml Connector attributes used:
scheme="https" proxyName="confluence.xyz.domain.local" proxyPort="443"
But the lucidchart diagramming plugin is not running after doing the proxy setup.Symptoms: The plugin loads, but font's can't be loaded (each character is represented by a small square) and saving is not possible.
On stackoverflow I found this: https://stackoverflow.com/questions/24908815/avoid-rewriting-urls-to-external-applications-with-reverse-proxy-on-iis but unfortunately I can't see anything that is not already listed on the atlassian guide.
Does anyone knows how to solve this issue?
Thanks for help & best regards,
jon
I have found that if you run Confluence behind IIS certain characters in the URL will cause IIS to not serve the content. I added this section inside the web.config file to fix that issue. Could be related.
<system.web>
<httpRuntime executionTimeout="20" requestPathInvalidCharacters="" requestValidationMode="2.0" />
<pages validateRequest="false" />
</system.web>
This solved the issue :) Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.