Using https://community.opscode.com/cookbooks/httpd/versions/0.1.5
Does anyone know how to set DocumentRoot ? Property ?
I'm currently using
httpd_service "default" do
listen_ports ['81']
action :create
end
which produces
ServerName centos65x64
ServerRoot /etc/httpd
PidFile /var/run/httpd/httpd.pid
User apache
Group apache
Timeout 400
ErrorLog /var/log/httpd/error_log
LogLevel warn
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 5
DefaultType None
HostnameLookups off
Listen 0.0.0.0:81
Include conf.d/*.conf
Include conf.d/*.load
In httpd.conf, but i'm not sure exactly how to set the DocRoot.