Merge pull request #16 from ollien/fix-comments
Avoid extracting comments when parsing domain names
This commit is contained in:
commit
386d73143b
|
@ -16,7 +16,7 @@ error() {
|
||||||
parse_domains() {
|
parse_domains() {
|
||||||
# For each configuration file in /etc/nginx/conf.d/*.conf*
|
# For each configuration file in /etc/nginx/conf.d/*.conf*
|
||||||
for conf_file in /etc/nginx/conf.d/*.conf*; do
|
for conf_file in /etc/nginx/conf.d/*.conf*; do
|
||||||
sed -n -e 's&^\s*ssl_certificate_key\s*\/etc/letsencrypt/live/\(.*\)/privkey.pem;&\1&p' $conf_file | xargs echo
|
sed -n -r -e 's&^\s*ssl_certificate_key\s*\/etc/letsencrypt/live/(.*)/privkey.pem;\s*(#.*)?$&\1&p' $conf_file | xargs echo
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue