Moved /srv/http-combined-content to /srv/www/http-combined-content

This commit is contained in:
Lutchy Horace 2022-05-11 18:55:27 -04:00
parent c1499d5e74
commit 421b9a57cc
1 changed files with 4 additions and 4 deletions

View File

@ -260,10 +260,10 @@ fi
## Begin issuing certificate ## Begin issuing certificate
########################################### ###########################################
echo -n "Checking if /srv/http-content-combined/ exists? " echo -n "Checking if /srv/www/http-content-combined/ exists? "
if ! test -d /srv/http-content-combined; then if ! test -d /srv/www/http-content-combined; then
echo "Creating..." echo "Creating..."
mkdir -p /srv/http-content-combined/ mkdir -p /srv/www/http-content-combined/
else else
echo "Yes!" echo "Yes!"
fi fi
@ -292,7 +292,7 @@ server {
access_log /var/log/nginx/${_domain}.access.log main; access_log /var/log/nginx/${_domain}.access.log main;
location /.well-known { location /.well-known {
root /srv/http-content-combined/; root /srv/www/http-content-combined/;
autoindex on; autoindex on;
} }