Fixed some nginx bugs

pull/13/head
Jef Roosens 2021-04-23 21:46:35 +02:00
parent 3e303f678f
commit d7d74235ad
Signed by: Jef Roosens
GPG Key ID: B580B976584B5F30
3 changed files with 3 additions and 3 deletions

View File

@ -5,4 +5,4 @@ user nginx nginx;
worker_processes auto;
# Load config segments
include conf.d/*;
include conf.d/*.conf;

View File

@ -6,7 +6,7 @@
# Renew all certificates
for url in $(env | grep '^[^=]\+_DOMAIN=' | sed 's/^.*\?=\(.*\)$/\1/g') $(echo "$DOMAINS" | sed 's/,/ /g')
do
cerbot certonly \
certbot certonly \
--standalone \
-d "$url" \
--email "$EMAIL" \

View File

@ -26,5 +26,5 @@ http {
}
# LOAD SITES
include sites-enabled/*.conf;
include conf.d/sites-enabled/*.conf;
}