I was wondering how it is possible to get information of a pages SSL certificate, using Scrapy.
Is there a method?
Thanks!
Scrapy 2.0.0 introduced Response.certificate.
Related
How to configure gradle.properties for adding SSL templates config ? Also, I'd like to add SSL to the REST App Server.
I have looked into https://github.com/marklogic-community/ml-gradle/wiki/Property-reference but couldn't find out from the README too. Any help would be appreciated.
Take a look at https://github.com/marklogic-community/ml-gradle/tree/master/examples/ssl-project for an example of how to set this up. This shows both a certificate template being created and used by a REST API server, and then modules being loaded via HTTPS and that same REST API server.
Does NginX(Open source, not Nginx plus), supports API Gateway?
Please, help me get to the valid documentation or information. Thank you!
Unfortunately the Nginx Api Gateway is featured only in Nginx Plus. But there is Kong, an alternative that is built on top of Nginx and is also open source.
There is even a post on Nginx's official blog about it: https://www.nginx.com/blog/nginx-powers-kong-api-management-solution/
Edit: The blog post has been replaced by an nginx plus one. The original post can still be accessed through web.archive.org:
https://web.archive.org/web/20160413082936/https://www.nginx.com/blog/nginx-powers-kong-api-management-solution/
I am having a domain chansek.com, hosted in Openshift through a Wordpress application. But the problem is, when I am trying to open my Wordpress Admin, it's always trying to connect through https instead of http. As I don't have any SSL certificate, it gives me some warning message. Please see the below screenshot for better understanding.
How do I make it go through http? I don't want any SSL certificate for my website as it's a personal blog.
I am also trying to use JetPack plugin. But it gives following error.
Your website needs to be publicly accessible to use Jetpack: site_inaccessible Error
Details: The Jetpack server was unable to communicate with your site
https://www.chansek.com [IXR -32300: transport error: http_request_failed SSL:
no alternative certificate subject name matches target host name 'www.chansek.com']
You have a couple of options:
1.) Disable using SSL for the admin in your wp-config.php file. (Openshift redirects wp-admin to https)
2.) Upgrade to the bronze plan and the purchase a custom ssl certificate and install it
You are getting that error from jetpack because the ssl certificate is not valid for your custom domain, only for your app-domain.rhcloud.com address.
I have wordpress multisite version 3.5 and woocommerce 2.0.2 with wildcard certificate.
I need to know if it is possible to force ssl on checkout page using wildcard ssl.
When I force ssl on the checkout page of the main site it works ok..
But when I do it on a subdomain with mapping plugin, I lose all the css of the checkout page and chrome display a certificate error.
Do I need a multi-domain certificate?
Can I have them working together?
What is the best way to go about this?
I will need SSL on checkout pages of each blog.
I need to know if it is possible to force ssl on checkout page using wildcard ssl
You can use the Wordpress HTTPS plugin to force SSL on the relevant pages.
I lose all the css of the checkout page and chrome display a certificate error.
You may need to create rewrites so that your assets are being served from the https subdomain: see this question for an example of it being done with subdirectory mapping.
How to get the SSL certificate context of the website using NPAPI ? Can I use libnss (Network Security Services) or should I stick to WinINet's InternetQueryOption() to get the context.
Thanks,
Saleh
The NPAPI doesn't have anything that could give you that information and, as far as i know, neither has JavaScript in the page.
So there is probably no way around retrieving the URL and using external libraries to get more information about it.