ansible-taler-exchange

Ansible playbook to deploy a production Taler Exchange
Log | Files | Refs | Submodules | README | LICENSE

auditor-http.conf.j2 (276B)


      1 server {
      2 
      3   listen 80;
      4   listen [::]:80;
      5 
      6   server_name auditor.{{ domain_name }};
      7 
      8   error_log /var/log/nginx/auditor.{{ domain_name }}-http.err;
      9   access_log /var/log/nginx/auditor.{{ domain_name }}-http.log;
     10 
     11   location / {
     12      return 301 https://$host$request_uri;
     13   }
     14 }