How to allow users to download app that google chrome blocks it as malware [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 5 years ago. Improve this question I have an Android App which allows users to spy or monitor their dependents device remotely. User has to download the app, register … Read more

Why Windows 10 Blocks some LAN IPs (192.168..)?

– Summarize the problem: Windows 10 does not allow visiting my local LAN IPs (192.168.1.0/24), and some domains (that are defined in my hosts file). Error shows in all browsers (e.g. form chrome: Firewall or antivirus software may have blocked the connection.) – what you’ve tried: I tried to check if chrome is allowed by … Read more

Testing WPAD file locally with Internet Explorer 11

I am in the process of making our WPAD script ipv6 ready. I downloaded our current (working) WPAD script and configured the following options in Internet Options -> Connections -> LAN settings Automatically detect settings unticked Use automatic configuration script ticked use proxy server for your LAN unticked I tried the following Layouts for specifing … Read more

images not cached with self-signed SSL certificate

I’m experiencing a problem where certain content (images) are not being cached when loaded from an https connection. The issue is occurring on both local and remote hosts, both are using self-signed certificates. Sample response header: HTTP/1.1 200 OK Date: Thu, 19 Jun 2014 17:22:53 GMT Server: Apache/2.4.9 (Ubuntu) X-Powered-By: PHP/5.5.11-3+deb.sury.org~saucy+1 Cache-Control: max-age=31536000, private X-Frame-Options: … Read more

Reflect HKLM registry changes to HKCU

Ok so I have a Local Group Policy (under Computer Config, not User Config) to force install extensions in Chrome. This policy needs to run for every user of the computer. The value is going to change based on a new version of our chrome extension and the policy checks if it needs to update … Read more

ERR_SSL_VERSION_OR_CIPHER_MISMATCH on Ubuntu

I’m running wordpress on a Digitalocean VPS with cloudflare installed. My ssl was working perfectly till a few days ago when a buch of clients informed me they received the following error when visiting the site (on chrome, it works on mozilla): ERR_SSL_VERSION_OR_CIPHER_MISMATCH A secure connection cannot be established because this site uses an unsupported … Read more

Nginx ssl http/2 chrome doesnt work

https://tools.keycdn.com/http2-test says: HTTP/2 Test Result Yeah! domain.com supports HTTP/2.0. ALPN supported. In domain config: listen 443 ssl http2; NGINX -V from https://launchpad.net/~ondrej/+archive/ubuntu/nginx-mainline: nginx version: nginx/1.11.6 built with OpenSSL 1.0.2j 26 Sep 2016 TLS SNI support enabled configure arguments: –with-cc-opt=’-g -O2 -fstack-protector –param=ssp-buffer-size=4 -Wformat -Werror=format-security -D_FORTIFY_SOURCE=2′ –with-ld-opt=’-Wl,-Bsymbolic-functions -Wl,-z,relro -Wl,-z,now’ –prefix=/usr/share/nginx –conf-path=/etc/nginx/nginx.conf –http-log-path=/var/log/nginx/access.log –error-log-path=/var/log/nginx/error.log –lock-path=/var/lock/nginx.lock –pid-path=/run/nginx.pid –modules-path=/usr/lib/nginx/modules … Read more

Issue with Nginx SSL config 301 http to https

my default server config is : # redirection http://example.org vers https//example.org # server { server_name example.org; return 301 https://example.org$request_uri; } # redirection http ou https www.example.org vers https ou https example.org # server { listen 80 default_server; listen [::]:80 default_server; listen 443 ssl http2 default_server; listen [::]:443 ssl http2 default_server; include snippets/ssl-example.org.conf; include snippets/ssl-params.conf; server_name … Read more