From c7e47ed3dfb9116dbeb8a444ec8f2fb1a41d34f9 Mon Sep 17 00:00:00 2001
From: ftimme <ft@falkotimme.com>
Date: Fri, 23 Sep 2011 08:33:25 -0400
Subject: [PATCH] - Added "ipv6only=on" to the IPv6 listen lines in the nginx vhost template to avoid "[emerg]: bind() to [::]:80 failed (98: Address already in use)" errors.

---
 interface/web/themes/default/css/screen/basemod.css |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/interface/web/themes/default/css/screen/basemod.css b/interface/web/themes/default/css/screen/basemod.css
index 13b006a..9498535 100644
--- a/interface/web/themes/default/css/screen/basemod.css
+++ b/interface/web/themes/default/css/screen/basemod.css
@@ -37,7 +37,13 @@
 	/* (de) Layout: Breite, Hintergrund, Rahmen */
 	/*#page_margins { min-width: 980px; max-width: 80%; background: #fff;}*/
 	/* #page_margins { min-width: 980px; max-width: 80%; background: #fff; display: inline-block;}*/
-	#page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;}
+	
+	/*WARNING: ADded a overrode for this setting in main.tpl with javascript to target non chrome browsers,
+	This has to be changed too in case that page_margins get changed. Reason: Chrome does not support the 
+	display: table; attribute correctly*/
+	#page_margins { min-width: 980px; max-width: 80%; background: #fff;}
+	/*#page_margins { min-width: 980px; max-width: 80%; background: #fff; display: table;}*/
+	
 	#page{ padding: 10px; }
 	
 	/* (en) Designing main layout elements */

--
Gitblit v1.9.1