You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

nginx_site_letsencryptinit.conf 147B

123456789
  1. server {
  2. listen 80;
  3. listen [::]:80;
  4. location /.well-known/acme-challenge/ {
  5. alias /run/nginx/challenges/;
  6. try_files $uri =404;
  7. }
  8. }