Trying to set localhost on my mac and made following changes in /etc/apache2/httpd.conf
DocumentRoot "/Users/xxx/Documents/workspace/firstRepo/htdocs"
<Directory "/Users/xxx/Documents/workspace/firstRepo/htdocs">
I know it's something to do with the dir permission, so I followed suggestions online and ran the following commands:
find /Users/xxx/Documents/workspace -type d -exec chmod 755 {} \;
find /Users/xxx/Documents/workspace -type f -exec chmod 644 {} \;
No luck here. Can someone help me with this? Thanks.
chmod +x /Users/xxx
– Colver