{"id":963,"date":"2018-05-17T19:38:40","date_gmt":"2018-05-17T23:38:40","guid":{"rendered":"https:\/\/www.devolve.net\/blog\/?p=963"},"modified":"2018-07-13T11:36:29","modified_gmt":"2018-07-13T15:36:29","slug":"quickly-show-which-directories-are-serving-host-names-on-a-multiple-vhost-apache-system","status":"publish","type":"post","link":"https:\/\/www.devolve.local\/quickly-show-which-directories-are-serving-host-names-on-a-multiple-vhost-apache-system\/","title":{"rendered":"Quickly show which directories are serving host names on a multiple Vhost Apache system"},"content":{"rendered":"
cd \/etc\/apache2\/sites-enabled\/\r\ngrep foo bar.conf\r\n# nope\r\ngrep foo *.conf\r\n# way too much output to scour through\r\n# there must be a better way!?<\/pre>\n

Does this look familiar? Maybe you need more fiber in your diet. Or maybe you need THIS:<\/p>\n

grep -Ev '^\\s*(#|$)' \/etc\/apache2\/sites-enabled\/*.conf | \\\r\n  awk '\/(Server(Name|Alias)|<Directory )\/{ $2=\"\"; print }' | \\\r\n  column -t<\/pre>\n

You’re welcome.<\/p>\n","protected":false},"excerpt":{"rendered":"

cd \/etc\/apache2\/sites-enabled\/ grep foo bar.conf # nope grep foo *.conf # way too much output to scour through # there must be a better way!? Does this look familiar? Maybe you need more fiber in your diet. Or maybe you need THIS: grep -Ev ‘^\\s*(#|$)’ \/etc\/apache2\/sites-enabled\/*.conf | \\ awk ‘\/(Server(Name|Alias)|<Directory )\/{ $2=””; print }’ | […]<\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":[],"categories":[6],"tags":[34,41,16,26],"_links":{"self":[{"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/posts\/963"}],"collection":[{"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/comments?post=963"}],"version-history":[{"count":2,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/posts\/963\/revisions"}],"predecessor-version":[{"id":965,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/posts\/963\/revisions\/965"}],"wp:attachment":[{"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/media?parent=963"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/categories?post=963"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.devolve.local\/wp-json\/wp\/v2\/tags?post=963"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}