After I installed new certificate using SQL RS Configuration Manager upon opening any report I see the following: In comparison to this case the root cause is the same: when binding a certificate Configuration Manager creates shitty URL bindings like
Tag: http
May 19 2023
HAProxy mixed content warning when using HTTPS
I use HAProxy to do SSL offloading for a WordPress site. Frontend is on 80 and 443 with redirect HAProxy redirect HTTP to HTTPS using redirect scheme https code 301 if !{ ssl_fc } Redirection is working well when the page is accessed on port 80. However the pages loads incomplete and looking in the …
Jan 08 2022
SSRS Something went wrong. Try again later
This annoying error was discovered when I tried to modify subscription settings for one of the reports that I have on SQL Reporting Server 2016. When you look inside of your Report Server Error Logs, you see the following error: ERROR: System.Net.WebException: The underlying connection was closed: Could not establish trust relationship for the SSL/TLS …
Sep 02 2020
Nginx reverse proxy to .onion site in TOR network
As Tor is not a http proxy but a Socks one you cannot insert .onion name or IP in proxy_pass directive. In order to use Nginx as reverse proxy to .onion sites you will need a socat. Socat is a command line based utility that establishes two bidirectional data streams and transfers between them. This …
Mar 21 2020
IIS Redirect HTTP to HTTPS
Once the SSL certificate is installed, your site still remains accessible via a regular insecure HTTP connection. To connect securely, visitors must specify the https:// prefix manually when entering your site’s address in their browsers. In order to force a secure connection on your website, it is necessary to set up HTTP to HTTPS redirection …