Skip to main content

apache2 config file utilities

Project description

[[TOC]]

a2utils package content

  • a2conf - CLI script to query apache2 config (e.g. get DocumentRoot or get all hostnames for specific VirtualHost)
  • a2certbot.py - CLI script to diagnose problems with Apache2 VirtualHost and LetsEncrypt certificates and make SSL sites easily
  • a2okerr.py - CLI script to generate indicators for SSL VirtualHosts in okerr monitoring system.

Installation

Usual simple way:

pip3 install a2utils

or get sources from git repo:

git clone https://gitlab.com/yaroslaff/a2utils

If using git sources (without installing), work from root dir of repo and do export PYTONPATH=.

CLI utilities

a2conf.py utility

Examples

For all examples we will use file examples/example.conf. You can omit this parameter to use default /etc/apache2/apache2.conf.

Use export PYTHONPATH=. to use module if it's not installed.

Most useful examples:

$ bin/a2conf examples/example.conf --dump --vhost secure.example.com 
# examples/example.conf:15
<VirtualHost *:443> 
    # SSL site
    DocumentRoot /var/www/example 
    ServerName example.com # .... OUR TEST SITE ....
    ServerAlias www.example.com 1.example.com 2.example.com secure.example.com 
    DirectoryIndex index.html index.htm default.htm index.php 
    Options -Indexes +FollowSymLinks 
    SSLEngine On # SSL Enabled for this virtual host
    SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem 
    SSLCertificateKeyFile /etc/letsencrypt/live/example.com/privkey.pem 
    SSLCertificateChainFile /etc/letsencrypt/live/example.com/chain.pem 
</VirtualHost> 

# Only specific commands with --vhost filter
$ bin/a2conf examples/example.conf --vhost www.example.com:443 --cmd documentroot sslcertificatefile 
DocumentRoot /var/www/example
SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem

# Same output achieved with other way of filtering (based on SSLEngine directive)
$ bin/a2conf examples/example.conf --filter sslengine on --cmd documentroot sslcertificatefile
DocumentRoot /var/www/example
SSLCertificateFile /etc/letsencrypt/live/example.com/fullchain.pem

# All hostnames configured in this config file
$ bin/a2conf examples/example.conf --cmd servername serveralias --uargs
secure.example.com example.com www.example.com 2.example.com 1.example.com

# per-vhost summary with filtering
$ bin/a2conf examples/example.conf --cmd servername serveralias --vhfmt 'Host: {servername} Root: {documentroot} Cert: {sslcertificatefile}' --filter sslcertificatefile
Host: example.com Root: /var/www/example Cert: /etc/letsencrypt/live/example.com/fullchain.pem

You can get list of all available tokens for --vhfmt option in verbose mode (-v option).

a2certbot.py

a2certbot.py utility used to quickly detect common LetsEncrypt configuration errors such as:

  • DocumentRoot mismatch between VirtualHost and LetsEncrypt renew config file (e.g. if someone moved site content)
  • RewriteRule or Redirect apache directives preventing verification
  • DNS record points to other host or not exists at all
  • And ANY OTHER problem (such as using wrong certificate path in apache or whatever). a2certbot.py simulates HTTP verification (If LetsEncrypt verification fails, a2certbot.py will fail too, and vice versa).

a2certbot.py does not calls LetsEncrypt servers for verification, so if you will use a2certbot.py to verify your configuration, you will not hit failed validation limit (5 failures per account, per hostname, per hour at moment) and will not be blacklisted on LetsEncrypt site.

Requesting new certificate and troubleshooting

Before requesting new certificates:

# Verify configuration for website for which you want to request certificate for first time.
bin/a2certbot.py --prepare -w /var/www/virtual/static.okerr.com/ -d static.okerr.com
=== manual ===
Info:
    (static.okerr.com) is local 37.59.102.26
    (static.okerr.com) Vhost: /etc/apache2/sites-enabled/static.okerr.com.conf:1
    (static.okerr.com) DocumentRoot: /var/www/virtual/static.okerr.com/
    (static.okerr.com) DocumentRoot /var/www/virtual/static.okerr.com/ matches LetsEncrypt and Apache
    (static.okerr.com) Simulated check match root: /var/www/virtual/static.okerr.com/
---

# You can verify all hostnames for site
bin/a2certbot.py --prepare -w /var/www/virtual/static.okerr.com/ -d static.okerr.com -d static2.okerr.com

# ... and finally simple main all-in-one command, it guesses aliases and root (command below does same as command above):
bin/a2certbot.py --prepare -d static.okerr.com --aliases

a2certbot.py can generate letsencrypt certificates in simple way (automatically detecting all aliases and DocumentRoot, but you can use -d instead of --aliases):

root@bravo:/home/xenon# a2certbot.py --create -d static.okerr.com --aliases
Create cert for static.okerr.com
RUNNING: certbot certonly --webroot -w /var/www/virtual/static.okerr.com/ -d static.okerr.com -d static2.okerr.com
Saving debug log to /var/log/letsencrypt/letsencrypt.log
Plugins selected: Authenticator webroot, Installer None
Obtaining a new certificate
Performing the following challenges:
http-01 challenge for static2.okerr.com
Using the webroot path /var/www/virtual/static.okerr.com for all unmatched domains.
Waiting for verification...
Cleaning up challenges

IMPORTANT NOTES:
 - Congratulations! Your certificate and chain have been saved at:
...

Troubleshooting renew certificates

If certbot renew fails:

# Check (verify) ALL existing LetsEncrypt certificates (to check why 'certbot renew' may fail ):
root@bravo:/home/xenon# a2certbot.py 
=== /etc/letsencrypt/renewal/bravo.okerr.com.conf PROBLEM ===
Info:
    (bravo.okerr.com) Vhost: /etc/apache2/sites-enabled/okerr.conf:17
    LetsEncrypt conf file: /etc/letsencrypt/renewal/bravo.okerr.com.conf
    bravo.okerr.com is local 37.59.102.26
Problems:
    No DocumentRoot in vhost at /etc/apache2/sites-enabled/okerr.conf:17
---

# Verify only one certificate 
root@bravo:/home/xenon# a2certbot.py --host bravo.okerr.com
=== /etc/letsencrypt/renewal/bravo.okerr.com.conf PROBLEM ===
Info:
    (bravo.okerr.com) Vhost: /etc/apache2/sites-enabled/okerr.conf:17
    LetsEncrypt conf file: /etc/letsencrypt/renewal/bravo.okerr.com.conf
    bravo.okerr.com is local 37.59.102.26
Problems:
    No DocumentRoot in vhost at /etc/apache2/sites-enabled/okerr.conf:17
---

a2certbot.py warnings (false positives)

a2certbot.py expects that requests to .well-known directory of HTTP (port 80) virtualhost must not be redirected. If you have redirection like this: Redirect 301 / https://example.com/ it will report problem:

Problems:
    Requests will be redirected: Redirect 301 / https://www.example.com/

Actually, this could be OK (false positive) and real verification from certbot renew may pass (if https site has same DocumentRoot). To see if this is real problem or not see result for 'Simulated check'. If simulated check matches - website will pass certbot verification.

To avoid such false positive, do not use such 'blind' redirection, better use this:

      RewriteCond %{REQUEST_URI} !^/\.well\-known        
      RewriteRule (.*) https://%{SERVER_NAME}$1 [R=301,L]

This code in <VirtuaHost *:80> context will redirect all requests to HTTPS site EXCEPT LetsEncrypt verification requests.

a2okerr.py

a2okerr.py is useful only if you are using okerr: free and open source hybrid (host/network) monitoring system.

Okerr is like nagios or zabbix, but can perform network checks from remote locations, has tiny and optional local client which can run from cron, has powerful logical indicators (notify me only if more then 2 servers are dead, notify me if any problem is not fixed for more then 30 minutes, ...), public status pages (like https://status.io/ but free), fault-tolerant sites (okerr will redirect dynamic DNS record to backup server if main server is dead, and point it back to main server when it's OK), supports Telegram and has many other nice features.

You can use it as free service (like wordpress or gmail) or you can install okerr server on your own linux machine from okerr git repository.

You will need to install small okerrupdate package to use a2okerr.py: pip3 install okerrupdate.

a2okerr.py discovers all https sites from apache config and creates SSL-indicator in your okerr project for each website. You will get alert message to email and/or telegram if any of your https sites has any problem (certificate is not updated in time for any reason and will expire soon or already expired. Website unavailable for any reason). If you have linux server or website - you need okerr.

# Create indicator for all local https websites. If indicator already exists, HTTP error 400 will be received - this is OK.
a2okerr.py

# alter prefix, policy and description
a2okerr.py --prefix my:prefix: --policy Hourly --desc "I love okerr and a2okerr"

# do not really create indicators, just dry run
a2oker.py --dry

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

a2utils-0.0.1-py3-none-any.whl (20.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page