Spdycheck is OK but Chrome 42 has Not Spdy Enabled

I am trying to implement spdy protocol with Nginx 1.8.0. I’ve built it with spdy module. When I check my website through spdycheck.org it is everything green and says spdy 3.1 is supported, but chrome extension in Chrome 42 doesn’t show green arrow and says it is not enabled. I’ve also checked chrome://net-internals/#spdy and my … Read more

Debian/Apache Server waiting time very slow only with Chrome

I have a website running on a Linux Debian Squeeze server with Apache 2. The website is the only one on the server and the traffic to the website is very low (800-1000 connection per day). The problem is that when I run the website on Chrome the “Wait” time is very long (1 min, … Read more

Hosts file doesn’t work with .com host names

My /etc/hosts file is configured as following: 127.0.0.1 localhost mysitea.local mysiteb.com www.mysiteb.com www.mysitea.local And I have my Apache virtual hosts setup accordingly: <VirtualHost *:80> ServerName www.mysitea.local ServerAlias mysitea.local WSGIScriptAlias / /var/www/mysitea/apache/django.wsgi <Directory /var/www/mysitea> Order deny,allow Allow from all </Directory> </VirtualHost> <VirtualHost *:80> ServerName www.mysiteb.com ServerAlias mysiteb.com WSGIScriptAlias / /var/www/mysitea/apache/django.wsgi <Directory /var/www/mysitea> Order deny,allow Allow from … Read more

DNS Server Failure

I think I have an odd DNS situation on my hands. We have two Windows Server 2008R2 DNS servers that all of our campus machines use. We are unable to get to the site cdbaby.com in any web browser. We can get to other websites, and the cdbaby.com site is accessible from off campus. I … Read more

How to allow Chrome to run a plugin when viewing a local file while GPO restrictions are in place.

The setup Windows server 2003 domain at a functional 2000 level Multiple server 2003 servers running terminal services All users running desktops delivered via RDP Google Chrome browser installed on the terminal servers and made accessible to the users Google Chrome group policy list in use Plugins are disabled by default via the GPO DefaultPluginsSetting … 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

How to configure .htaccess to cache root along with all other files

For my website, all files are cached except the index.html file. For .htaccess, I have: Options -Indexes RewriteEngine On RewriteCond %{HTTP_HOST} !^www\.mywebsite\.com [NC] RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R=301,L] RewriteCond %{SERVER_PORT} 80 RewriteRule ^(.*)$ https://www.mywebsite.com/$1 [R=301,L] DirectoryIndex /index.html AddType text/html .html AddOutputFilter INCLUDES .html ErrorDocument 404 https://www.mywebsite.com/ AddOutputFilterByType DEFLATE text/plain AddOutputFilterByType DEFLATE text/html AddOutputFilterByType DEFLATE text/xml AddOutputFilterByType … Read more