Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save jdeathe/7e2d236b2d13e05cac2c349eac4196a0 to your computer and use it in GitHub Desktop.
Save jdeathe/7e2d236b2d13e05cac2c349eac4196a0 to your computer and use it in GitHub Desktop.
BASH one liner to output Apache config files for NameVirtualHosts

The output of apachectl -S is really useful but it's not easy to parse in a script. To make it easier to find the configuration file for a given NameVirtualHost host the following BASH one liner returns lines of output that can be easily parsed.

# apachectl -S 2>&1 \
| sed -rn -e '/NameVirtualHost$/,$ { /NameVirtualHost$/d; $ d; p; }' \
| sed -rn -e 's/^.*(port ([0-9]+) namevhost|alias) ([^ ]*)( )?(\((.*):[0-9]+\)|$)/\2 \6\n\3/p' \
| sed -r -e '/^$/d' -e 's/(.*\.conf$)/\n\1/g' \
| awk -vRS='' '$1=$1' \
| sort -n \
| uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment