Hello, I have a special use case for the HTTPD server, I would like to disable the chroot but can't seem to get it working correctly. Within httpd.conf, I have tried to set:
chroot "/" ## Instead of default which is: /var/www
root "/var/www/htdocs/web"
#root "/htdocs/web" # Disabled
location "/" {
directory {
index "index.html"
}
}
But I can't access my page until I put it back to normal (uncomment the # lines
and remove the new ones)
Any help would be greatly appreciated. Thanks

