Ajout : cyclo-vote.
[lhc/ateliers.git] / etc / nginx / site.d / cyclo-vote / http.conf
1 server {
2 listen 80;
3 server_name
4 vote.cyclocoop.org;
5
6 return 301 https://$host$request_uri;
7 }
8 upstream cyclo-vote {
9 server 127.0.0.1:5000
10 fail_timeout=300s
11 weight=1;
12 }