apache - setting document root in antoher partition on ubuntu -


i place apache document root inside partition of ubuntu hard drive, keep getting forbidden message, when place home directory woking find, how be? group or owner affected ? here mysite.conf , apache2.conf when place document root in home folder (working)

#site-available/mysite.conf documentroot /home/jono/www  #/etc/apache2/apache2.conf <directory /home/jono/www/>     options indexes followsymlinks     allowoverride none     require granted </directory> 

bu when change document root partition keep getting forbidden messasge

#site-available/mysite.conf documentroot /media/jono/website_data/www  #/etc/apache2/apache2.conf <directory /media/jono/website_data/www/>     options indexes followsymlinks     allowoverride none     require granted </directory> 

is owner/group access affected ? or there problem ?

at last it's working, have grant access www:data accesing whole directory @mark-b, using chown -r www-data:www-data whole directory isn't idea local development ok guest


Comments

Popular posts from this blog

python - pip install -U PySide error -

arrays - C++ error: a brace-enclosed initializer is not allowed here before ‘{’ token -

cytoscape.js - How to add nodes to Dagre layout with Cytoscape -