add new theme
[mlpccg-meta.git] / data / nginx.conf
index a97d019..8eac38b 100644 (file)
@@ -3,7 +3,11 @@ server {
     server_name  mlpccg-meta.yukkurigames.com;
  
     access_log  /var/log/nginx/mlpccg-meta.access.log;
+
+    location /favicon.ico {
+        alias   /home/jessicatz/mlpccg-meta/static/favicon.ico;
+    }
+    
     location /static {
         alias   /home/jessicatz/mlpccg-meta/static;
     }
@@ -13,7 +17,8 @@ server {
         fastcgi_pass 127.0.0.1:9000;
         # for a TCP host/port:
         # fastcgi_pass   {hostname}:{port};
+        fastcgi_split_path_info ^()(.*)$;
+        
         # necessary parameter
         fastcgi_param PATH_INFO $fastcgi_script_name;
  
@@ -24,5 +29,7 @@ server {
  
         # http://stackoverflow.com/questions/605173/how-to-nginx-virtual-servers-fcgi-for-django uses many other parameters, 
         # some may be necessary in some situations
+
+        include fastcgi_params;
     }
 }
\ No newline at end of file