summaryrefslogtreecommitdiff
path: root/templates/site.erb
blob: 9c575cb91a00d9cd25728b790640295aa6172db1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
  listen       80;
  server_name  *.<%= @use_fqdn %> <%= @use_fqdn %>;

  location /.well-known/acme-challenge {
    root /var/spool/certbot/<%= @use_fqdn %>;
  }

  location / {
    return 301 https://$host$request_uri;
  }
}