Ajout : etc/sympa/host.d/ptitvelo.net
[lhc/ateliers.git] / etc / nginx / site.d / sympa / site.conf
index 33a0863..a5e8f03 100644 (file)
@@ -1,4 +1,9 @@
-server_name sympa.heureux-cyclage.org;
+server_name
+ sympa.heureux-cyclage.org
+ sympa.cyclocoop.heureux-cyclage.org
+ sympa.cyclocoop.org
+ sympa.ptitvelo.heureux-cyclage.org
+ sympa.ptitvelo.net;
 
 client_body_buffer_size 8k;
 client_max_body_size 10m;
@@ -11,7 +16,6 @@ location ~ /\. {
        log_not_found off;
  }
 location / {
-       index index.html index.htm;
        include /etc/nginx/conf.d/fastcgi.conf;
        set $no_cache "0";
        if ($request_method !~ ^(GET|HEAD)$) {
@@ -32,8 +36,16 @@ location / {
        fastcgi_cache_valid 200 10s;
        fastcgi_cache_valid 404 30m;
        fastcgi_ignore_headers Cache-Control Expires Set-Cookie;
-       fastcgi_max_temp_file_size 2M;
        fastcgi_no_cache $no_cache;
+       fastcgi_param SCRIPT_NAME '';
+       set $sympa_robot $host;
+       if ($host = "sympa.cyclocoop.heureux-cyclage.org") {
+               set $sympa_robot "sympa.cyclocoop.org";
+        }
+       if ($host = "sympa.ptitvelo.heureux-cyclage.org") {
+               set $sympa_robot "sympa.ptitvelo.net";
+        }
+       fastcgi_param SERVER_NAME $sympa_robot;
        fastcgi_param PATH_INFO $uri;
        
        fastcgi_pass_header Cookie;