httpd.conf

How do you make it so that when you place a alias folder in your web server folder it reads it as an alias instead of a file
 
Also make sure the folder to which the symbolic link points is world-readable and world-executable and its contents are world-readable. The simplest way to do this is to use:

chmod -R 755 /path/to/my/folder

...which makes the folder and its contents readable and executable by everybody. Strictly speaking only the folders need to be executable, meaning they can be entered and their contents discovered - in this case by Apache.

For more security you'd want to change the folder's group to "www" and then make it and its contents group-readable and executable instead, which would be 750 instead of 755.
 
Look what I've got form WebMin, trying to start Apache server:

Failed to start apache :

dyld: /usr/sbin/httpd Undefined symbols:
_apple_hfs_module
/usr/sbin/apachectl start: httpd could not be started

Running 10.1.2. Any ideas?
 
Back
Top