Skip to content

Instantly share code, notes, and snippets.

@daronco
Last active February 15, 2024 11:50
Show Gist options
  • Star 46 You must be signed in to star a gist
  • Fork 15 You must be signed in to fork a gist
  • Save daronco/45eeb9223c57d240e60d094f8bee457e to your computer and use it in GitHub Desktop.
Save daronco/45eeb9223c57d240e60d094f8bee457e to your computer and use it in GitHub Desktop.
Letsencrypt with webroot on Apache

Config Apache with /etc/apache2/conf-available/le.conf:

Alias /.well-known/acme-challenge/ "/var/www/html/.well-known/acme-challenge/"
<Directory "/var/www/html/">
    AllowOverride None
    Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
    Require method GET POST OPTIONS
</Directory>

Enable config:

sudo a2enconf le

Install cert / renew cert:

certbot-auto certonly --non-interactive --register-unsafely-without-email --agree-tos --expand --webroot --webroot-path /var/www/html --domain my-domain.org
certbot-auto renew --webroot --webroot-path /var/www/html --no-self-upgrade
@kakra
Copy link

kakra commented Feb 7, 2022

Indexes should not be enabled in the challenges directory...

@fizdog
Copy link

fizdog commented Oct 27, 2023

I know this is old but someone pointed me here when i was having issues setting up LE and i wanted to ask where to i put that porxy info that was commented about?

@No3x
Copy link

No3x commented Oct 27, 2023

@fizdog it usually goes into your site conf. Best thing to do is finding documentation or a tutorial about mod_proxy how to install (it requires prerequisites) and how to use.

@fizdog
Copy link

fizdog commented Oct 27, 2023

@fizdog it usually goes into your site conf. Best thing to do is finding documentation or a tutorial about mod_proxy how to install (it requires prerequisites) and how to use.

Ok will do. Thanks for the info.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment