Нет описания

certbot.nginx 217B

1234567891011
  1. {% import 'globals.jinja' as globals %}
  2. server {
  3. listen 80;
  4. server_name {{ globals.private_fqdn }};
  5. location /.well-known/ {
  6. alias /data/certbot/.well-known/;
  7. expires 30d;
  8. autoindex off;
  9. }
  10. }