Modifications : nginx/site.d/burette/http.conf -
[lhc/ateliers.git] / etc / nginx / site.d / burette / http.conf
1 server {
2 listen 80;
3 server_name
4 burettes.heureux-cyclage.org
5 burette.atelierdynamo.fr
6 burette.autourducycle.heureux-cyclage.org
7 burette.changedechaine.heureux-cyclage.org
8 burette.cyclocoop.heureux-cyclage.org
9 burette.cyclocoop.org
10 burette.cyclofficineangouleme.heureux-cyclage.org
11 burette.dynamo.heureux-cyclage.org
12 burette.labecaneajules.heureux-cyclage.org
13 burette.labecaneajules.fr
14 burette.ohcyclo.heureux-cyclage.org
15 burette.ptitvelo.heureux-cyclage.org
16 burette.ptitvelo.net
17 burette.repeyre.fr
18 burette.repeyre.heureux-cyclage.org
19 burette.txirrindola.org
20 burette.txirrindola.heureux-cyclage.org
21 burette.velorution.org
22 burette.velorution_idf.heureux-cyclage.org
23 burette.velorution_toulouse.heureux-cyclage.org
24 burette.velosenville.org
25 burette.vieuxbiclou.heureux-cyclage.org
26 burette.vieuxbiclou.org;
27
28 return 301 https://$host$request_uri;
29 }
30 upstream openerp7_burette {
31 server 127.0.0.1:8069
32 fail_timeout=300s
33 weight=1;
34 }
35 map $http_host $burette_dbfilter {
36 default "";
37 burette.atelierdynamo.fr "dynamo$";
38 burette.autourducycle.heureux-cyclage.org "autourducycle$";
39 burette.changedechaine.heureux-cyclage.org "changedechaine$";
40 burette.cyclocoop.heureux-cyclage.org "cyclo_.*$";
41 burette.cyclocoop.org "cyclo_.*$";
42 burette.cyclofficineangouleme.heureux-cyclage.org "cyclofficine_angouleme$";
43 burette.dynamo.heureux-cyclage.org "dynamo$";
44 burette.labecaneajules.heureux-cyclage.org "labecaneajules$";
45 burette.labecaneajules.fr "labecaneajules$";
46 burette.ohcyclo.heureux-cyclage.org "ohcyclo$";
47 burette.ptitvelo.heureux-cyclage.org "ptitvelo$";
48 burette.ptitvelo.net "ptitvelo$";
49 burette.repeyre.fr "repeyre$";
50 burette.repeyre.heureux-cyclage.org "repeyre$";
51 burette.txirrindola.heureux-cyclage.org "txirrindola$";
52 burette.txirrindola.org "txirrindola$";
53 burette.velorution.org "velorution_idf$";
54 burette.velorution_idf.heureux-cyclage.org "velorution_idf$";
55 burette.velorution_toulouse.heureux-cyclage.org "velorution_toulouse$";
56 burette.velosenville.heureux-cyclage.org "velosenville$";
57 burette.velosenville.org "velosenville$";
58 burette.vieuxbiclou.heureux-cyclage.org "vieuxbiclou$";
59 burette.vieuxbiclou.org "vieuxbiclou$";
60 burettes.heureux-cyclage.org ".*$";
61 }