Blog post navigation issue #1008
Replies: 3 comments
-
|
@ramdev1980 You have to publish the blog posts and have a running DTS for this as well right? Also didn't you have to edit the perc-security.properties files to stop the CORS error? |
Beta Was this translation helpful? Give feedback.
-
|
I am moving this to a discussion because I think it is a configuration issue. In a reverse proxy setup with IIS where IIS is configured for HTTPS, the proxy must also use https to connect to the DTS. This means that the DTS needs to have a valid hostname and a valid https certificate configured. |
Beta Was this translation helpful? Give feedback.
-
|
The issue is related to the latest browser / server security settings. When in a reverse proxy configuration, the full flow must now be configured over https with valid public SSL certificates (self-signed certificates will not work). Here are a couple examples of invalid configurations: ❌ Web Server Proxying to DTS Over HTTP flowchart TD;
t1(User Browser - https://www.mysite.com:443) --> t2( IIS Web Server - https://www.mysite.com:443) --> t3(DTS Tomcat - http://serverip:9980);
❌ Web Server Proxying to DTS Over HTTPS but not with valid certificate flowchart TD;
t1(User Browser - https://www.mysite.com:443) --> t2( IIS Web Server - https://www.mysite.com:443) --> t3(DTS Tomcat - https://serverip:8443);
✅Web Server Proxying to DTS Over HTTPS with valid certificate flowchart TD;
t1(User Browser - https://www.mysite.com:443) --> t2( IIS Web Server - https://www.mysite.com:443) --> t3(DTS Tomcat - https://dts.mysite.com:8443);
Steps to configure
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
Describe the bug
The blog posts have an issue: The “Newer Entries” and “Older Entries” links on any post doesn't work, they connect back to the blog page you’re on.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
“Newer Entries” and “Older Entries” links should work.
Beta Was this translation helpful? Give feedback.
All reactions