Posts

Showing posts with the label https

How to Enable option HTTPs redirect in blogspot

Image
How to Enable option HTTPs redirect in blogspot I have set my custom domain : Before set my custom domain HTTPS redirect Option is Enable but After set my custom domain HTTPS redirect Option is Disable 2 Answers 2 HTTPS is currently not available for custom domain blogs. But available with CloudFlare: blog.cloudflare.com/… – web_xaser Oct 16 '17 at 22:28 But My question is How to enable https redirect option. Note : I m using blospot – Savan Javia Oct 24 '17 at 12:55 It's available now from draft.blogger.com, check my below answer. ...

REST API with Single Page Application over HTTPS on Firefox only

REST API with Single Page Application over HTTPS on Firefox only I am developing a web service using REST API. This REST API is running on port 6443 for HTTPS. Client is going to be a Single page application running on port 443 for HTTPS on same machine. The problem I am facing is: While I hit the url say: https://mymachine.com/new_ui I get certificate exception for an invalid certificate because I use a self signed one, so mymachine.com:443 gets added to server exception. But still requests doen't go to REST API as they are running on https://mymachine.com:6443/restservice. If I manually add mymachine.com:6443 to server exception on firefox it works but it will not be the case in production for customers. Some options that I thought are: 1. Give another pop up and ask to add REST server on port 6443 exception too.But this doesn't look proper as why an end user should accept the cerf for same domain twice. Also REST api server port can change. Please suggest some options. How ...

Getting HTML of a page that protected from a DDoS

Getting HTML of a page that protected from a DDoS I tried to get the page HTML code using jsoup and just URL from java.net but the page protection from DDoS gives me a code of the protection page. The protection is trying to veriefy that my program is a browser then it redirect me to the main page when i use a browser but it doesn't return me the main page code when i try to get it from my java program. I've been googling a lot but i did not get anything not worthless ) the site - https://anilibria.tv what it returns - https://drive.google.com/file/d/1dEr_RB1-Jh5qlSQRN2yGVRTSkmbnzHhI/view?usp=sharing By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Apache, Tomcat & SSL: ProxyPass and ProxyPassReverse

Image
Apache, Tomcat & SSL: ProxyPass and ProxyPassReverse I'am having troubles configuring Apache, Tomcat and SSL, this is the scenario: I have an Apache Web Server, running and working normally (but , I can access to this one just typing: https://example.com Also, in this host, I have a Tomcat running and working fine in port 8080 (HTTP); I've created a mini web-app which files are inside "test" directory, I can access typing: http://example.com:8080/test (I know that Apache is running in 80 port and Tomcat in 8080) What I want to do is that througt Apache an user can access to 'test' (running on Tomcat) using HTTPS, I mean: https://example.com/test But when I access this link appers this: When I access using HTTP http://example/test works, but I need that be HTTPS. http://example/test I also create a file config in /etc/httpd/conf.d/vhost.conf , this is the content: /etc/httpd/conf.d/vhost.conf <VirtualHost *:80> ServerName www.example.com Docu...

HTTPS Issue With Mixed Content - ARForms Plugin

HTTPS Issue With Mixed Content - ARForms Plugin I have a site wordpress in HTTPS, but also i have an Mixed Content because of ARForms Plugin. PHP 5.6 fonts.googleapis.com and some images in this plugin unsecure, and that files i cant find in database anf template files, please help me by PHP. Thank you. This is what i found in configuration and this functional not work: $arfsiteurl = home_url(); if (is_ssl() and ( !preg_match('/^https://.*..*$/', $arfsiteurl) or ! preg_match('/^https://.*..*$/', WP_PLUGIN_URL))) { $arfsiteurl = str_replace('http://', 'https://', $arfsiteurl); define('ARFURL', str_replace('http://', 'https://', WP_PLUGIN_URL . '/arforms')); } else { define('ARFURL', WP_PLUGIN_URL . '/arforms'); } 1 Answer 1 You should try to download these scripts locally and enqueue them with your HTTPS secur...