Website shows secure on browser, but unsecure (without SSL certifcate) in mobile [closed] - google-chrome

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I think I successfully installed SSL certificate to my website, it shows secure on browser:
but when I open website in chrome mobile browser, it says:
Your connection to this site is not secure
You should not enter any sensitive information on this site ....
Is there any problem installing SSL certificate. I restarted my mobile, deleted all cookies, stories :( and still same thing. Any clue?
update: Server side configuration
server {
listen 80;
server_name IP_Address domain_name.com;
return 301 https://$server_name$request_uri;
}

Try changing the URL in the address bar of your mobile web browser from http://... to https://....
If that fixes the problem, you will need to create a redirect that automatically does this for your visitors.

Related

How to determine why the connected host is different from request URL in Chrome? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
Trying to connect to bookdepository.com I occasionally notice that I get redirected through some shady affiliate link before landing on the site. I type the domain in the address bar and hit enter, the call first goes through a domain called www.httpslink.me then redirected to go.magik.ly then to awin affiliate network and finally to bookdepository. Here's a screenshot of the initial request:
I'm trying to figure out why this happens. You can see that while the request URL is bookdepository the contacted host is httpslink.me. My question is what determines the host that will be contacted. I logged the network traffic through chrome://net-export/ and there is no mention of an initial request to bookdepository, it goes straight to httpslink.me

Network Solutions alias on Gmail: TLS Negotiation failed, the certificate doesn't match the host [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 2 years ago.
Improve this question
As of yesterday, I can't send any emails with gmail as my alias with network solutions. Has anyone found a fix for this?
I get the error on gmail:
Message not delivered
You're sending this from a different address or alias using the 'Send mail as' feature. The settings for your 'Send mail as' account are misconfigured or out of date. Check those settings and try resending.
TLS Negotiation failed, the certificate doesn't match the host.
Try to enter to https://accounts.google.com/b/0/DisplayUnlockCaptcha
in your browser.
I have no idea what this link do and why , but after i use it this strange tls problem was gone

How configure charles-proxy to work with chrome in linux [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 3 years ago.
Improve this question
I try setting the chrome proxy:
google-chrome --proxy-server=127.0.0.1:8888
Chrome opens a new window, but charles does not capture any.
Charles opens up a proxy usually at localhost:8888 (you can change it in the Proxy > Proxy settings... menu), so what you have to do is simply add this proxy server to your connections.
The best way to achieve that I've found is by installing the Proxy SwitchyOmega extension, configuring the proxy parameters as told before and switching manually whenever you want to track http requests.
It's not as easy as it is on windows but works fine for me.

jsfiddle - phising warning in chrome [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I'm getting this message after I press "run":
Reported Phishing Website Ahead! Google Chrome has blocked access to
fiddle.jshell.net. This website has been reported as a phishing
website. Phishing websites are designed to trick you into disclosing
your login, password or other sensitive information by disguising
themselves as other websites you may trust. Learn more Go back
Advanced
Here's a screenshot :
Here are some informations about fiddle.jshell.net:
http://www.webutations.org/go/review/fiddle.jshell.net and http://support.clean-mx.com/clean-mx/phishing.php?domain=jshell.net&sort=id%20DESC
Also, here Google explains Google Chrome 17+ Speed and Security policies: http://chrome.blogspot.ro/2012/01/speed-and-security.html
However, people can submit pishing websites that will be analized and tested.
Google's Diagnostic Webpage: http://www.google.com/safebrowsing/diagnostic?site=fiddle.jshell.net
My suggestion is to upgrade your browser version even though Google says that it is Secured.

How to access two servers on one domain [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
Port 80 is forwarded to a server on my network which has links to the different projects I'm working on, how could I allow people to connect to the server running on my laptop when I'm using it? I would obviously not prefer to change my router settings frequently to port forward to my laptop. I want the user to access my domain and maybe have a set of links which will be described as static and another set which will have a description cautioning the user that said links will only work when I am online and they would somehow redirect to my laptop. (Lamp Server)
Well, if I understood correctly your question, you should configure your laptop as a reverse proxy for your main server.
As you said, you should have a set of links which will redirect to your laptop (via reverse proxy config), but of course these links will work only when your laptop is available.